ITableNameSet Interface

Provides access to members that describe a set of table names.

Members

Name Description
Method Add Add table to set.
Read-only property Exists Does the set contain this table.
Method Find Find table in set.
Method Remove Remove table from set.

ITableNameSet.Add Method

Add table to set.

Public Sub Add ( _
    ByVal Name As String, _
    ByVal TableName As IDatasetName _
)
public void Add (
    string Name,
    IDatasetName TableName
);

ITableNameSet.Exists Property

Does the set contain this table.

Public Function get_Exists ( _
    ByVal Name As String _
) As Boolean
public bool get_Exists (
    string Name
);

ITableNameSet.Find Method

Find table in set.

Public Function Find ( _
    ByVal Name As String _
) As IDatasetName
public IDatasetName Find (
    string Name
);

ITableNameSet.Remove Method

Remove table from set.

Public Sub Remove ( _
    ByVal Name As String _
)
public void Remove (
    string Name
);

Classes that implement ITableNameSet

Classes Description
TableNameSet A set of table names.

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.