Provides a constant for use with the ULConnection.GetSchema(String) that represents the MetaDataCollections collection.
Visual Basic
Public Shared Readonly Property MetaDataCollections As String
C#
public const string MetaDataCollections { get;}
A string representing the name of the MetaDataCollections collection.
The following code fills a DataTable with the MetaDataCollections collection.
' Visual Basic Dim schema As DataTable = _ conn.GetSchema( ULMetaDataCollectionNames.MetaDataCollections ) // C# DataTable schema = conn.GetSchema( ULMetaDataCollectionNames.MetaDataCollections );