Click or drag to resize

TableInfo Class

Database table information.
Inheritance Hierarchy
SystemObject
  OpenDiscoverSDK.Interfaces.ContentTableInfo

Namespace: OpenDiscoverSDK.Interfaces.Content
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.4.0 (2025.4.4)
Syntax
C#
[DataContractAttribute]
public class TableInfo

The TableInfo type exposes the following members.

Constructors
 NameDescription
Public methodTableInfo Constructor.
Top
Properties
 NameDescription
Public propertyColumns Table column information as an in order list of columns as found in table.
Public propertyColumnsByName Table column information by column name.
Public propertyIsHiddenTable True if table is a hidden table.
Public propertyIsSystemTable True if table is a system database table (if false, table is a user defined table).
Public propertyIsUserTable True if table is a user defined table.
Public propertyName Database table name.
Public propertyRowCount Count of table total rows.
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Remarks

This class stores high level database table information. To extract table data see the various methods of interface IDatabaseExtractor.

See class DatabaseContent for more information.

See Also