Restrictions property

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

Syntax
Visual Basic

Public Shared Readonly Property Restrictions As String
C#

public const string  Restrictions  { get;}
Property value

A string representing the name of the Restrictions collection.

Example

The following code fills a DataTable with the Restrictions collection.

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

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