SettingsStore.GetSubCollectionNames(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the names of sub collections under the given collection.
public:
abstract System::Collections::Generic::IEnumerable<System::String ^> ^ GetSubCollectionNames(System::String ^ collectionPath);
public abstract System.Collections.Generic.IEnumerable<string> GetSubCollectionNames (string collectionPath);
abstract member GetSubCollectionNames : string -> seq<string>
Public MustOverride Function GetSubCollectionNames (collectionPath As String) As IEnumerable(Of String)
Parameters
- collectionPath
- String
Path of the collection.
Returns
Names of sub collections are returned.
Exceptions
If the collection does not exist, method throws this exception.
Remarks
This method is safe to access from any thread.