Provides access to members that describe a set of table names.
Members
Name | Description | |
---|---|---|
Add | Add table to set. | |
Exists | Does the set contain this table. | |
Find | Find table in set. | |
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. |