'Declaration
<ExtensionAttribute()> <CanBeNullAttribute()> Public Overloads Shared Function SearchPublishedDataSet( _ ByVal readOnlyPubSubConfiguration As IUAReadOnlyPubSubConfiguration, _ ByVal dataSetFolderPath As IReadOnlyList(Of String), _ ByVal publishedDataSetName As String _ ) As String()
'Usage
Dim readOnlyPubSubConfiguration As IUAReadOnlyPubSubConfiguration Dim dataSetFolderPath As IReadOnlyList(Of String) Dim publishedDataSetName As String Dim value() As String value = IUAReadOnlyPubSubConfigurationExtension.SearchPublishedDataSet(readOnlyPubSubConfiguration, dataSetFolderPath, publishedDataSetName)
[Extension()] [CanBeNull()] public static string[] SearchPublishedDataSet( IUAReadOnlyPubSubConfiguration readOnlyPubSubConfiguration, IReadOnlyList<string> dataSetFolderPath, string publishedDataSetName )
[Extension()] [CanBeNull()] public: static array<String^>^ SearchPublishedDataSet( IUAReadOnlyPubSubConfiguration^ readOnlyPubSubConfiguration, IReadOnlyList<String^>^ dataSetFolderPath, String^ publishedDataSetName )
Parameters
- readOnlyPubSubConfiguration
- OPC UA PubSub configuration (read-only).
This is typically obtained by calling OpcLabs.EasyOpc.UA.PubSub.InformationModel.EasyUAPublishSubscribeClientCore.AccessReadOnlyConfiguration, OpcLabs.EasyOpc.UA.PubSub.InformationModel.Extensions.IEasyUAPublishSubscribeClientExtension.AccessOrLoadReadOnlyConfiguration or OpcLabs.EasyOpc.UA.PubSub.InformationModel.Extensions.IEasyUAPublishSubscribeClientExtension.AccessOrLoadReadOnlyConfiguration.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - dataSetFolderPath
- A path to the folder that contains the published dataset.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).The individual elements of the parameter value cannot be
null
(Nothing
in Visual Basic). - publishedDataSetName
- The name of the published dataset.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).
Return Value
null
if the specified published dataset name does not exist in the dataset folder specified by dataSetFolderPath or its subfolders (recursively).
This method can return null
(Nothing
in Visual Basic).
The individual elements of the returned value are never null
(Nothing
in Visual Basic).