'Declaration
Function HasDataSetFolder( _ ByVal dataSetFolderPath As IReadOnlyList(Of String), _ ByVal dataSetFolderName As String _ ) As Boolean
'Usage
Dim instance As IUAReadOnlyPubSubConfiguration Dim dataSetFolderPath As IReadOnlyList(Of String) Dim dataSetFolderName As String Dim value As Boolean value = instance.HasDataSetFolder(dataSetFolderPath, dataSetFolderName)
bool HasDataSetFolder( IReadOnlyList<string> dataSetFolderPath, string dataSetFolderName )
bool HasDataSetFolder( IReadOnlyList<String^>^ dataSetFolderPath, String^ dataSetFolderName )
Parameters
- dataSetFolderPath
- A path to the dataset folder.
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). - dataSetFolderName
- The name of the dataset folder.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).
Return Value
true
if the dataset folder named dataSetFolderName exists (directly) under the dataset folder specified by the dataSetFolderPath; returns false
otherwise.