Searches for the published dataset in the specified dataset folder and its subfolders (recursively), and returns the dataset folder path it is in.
'Declaration
<CanBeNullAttribute()>
Function SearchPublishedDataSet( _
ByVal As Object, _
ByVal As String _
) As Object()
'Usage
Dim instance As _UAReadOnlyPubSubConfiguration
Dim dataSetFolderPath As Object
Dim publishedDataSetName As String
Dim value() As Object
value = instance.SearchPublishedDataSet(dataSetFolderPath, publishedDataSetName)
Parameters
- 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 can be null
(Nothing
in Visual Basic).
Return Value
Returns an array of dataset folder names that represents the dataset folder path of the dataset folder where the published dataset with name resides. Returns
null
if the specified published dataset name does not exist in the dataset folder specified by 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).
Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows
See Also