ISettingsProviderContract.GetCollectionNames Method (String)
Gets the collections belonging to a particular application.
Namespace: Microsoft.WindowsServerSolutions.Settings
Assembly: SettingsObjectModel (in SettingsObjectModel.dll)
Syntax
[OperationContractAttribute]
IList<string> GetCollectionNames(
string application
)
[OperationContractAttribute]
IList<String^>^ GetCollectionNames(
String^ application
)
<OperationContractAttribute>
Function GetCollectionNames (
application As String
) As IList(Of String)
Parameters
application
Type: System.StringThe application to find collections for.
Return Value
Type: System.Collections.Generic.IList<String>
A list of collections associated with the specified application. If the application has no collections, or has not been referred to previously, returns an empty but not null list.
See Also
ISettingsProviderContract Interface
Microsoft.WindowsServerSolutions.Settings Namespace
Return to top