Indexes property

Provides a constant for use with the ULConnection.GetSchema(String) that represents the Indexes collection.

Syntax
Visual Basic
Public Shared Readonly Property Indexes As String
C#
public const string  Indexes { get;}
Property value

A string representing the name of the Indexes collection.

Example

The following code fills a DataTable with the Indexes collection.

' Visual Basic
Dim schema As DataTable = _
  conn.GetSchema( ULMetaDataCollectionNames.Indexes )

// C#
DataTable schema =
  conn.GetSchema( ULMetaDataCollectionNames.Indexes );
See also