Adf.Core.Data.TableDescriber.TableDescriber C# (CSharp) Method

TableDescriber() public method

Initializes a new instance of the TableDescriber class with the specified table name and DataSources object.
public TableDescriber ( string tableName, DataSources datasource ) : System
tableName string The name of a table.
datasource DataSources Initialize the connection by .
return System
        public TableDescriber(string tableName, DataSources datasource)
        {
            _name = tableName;
            _dataSource = datasource;
        }