ReservedWords property

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

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

A string representing the name of the ReservedWords collection.

Example

The following code fills a DataTable with the ReservedWords collection.

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

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