Microsoft.Isam.Esent.Interop.ColumnInfo.ColumnInfo C# (CSharp) Method

ColumnInfo() private method

Initializes a new instance of the ColumnInfo class.
private ColumnInfo ( string name, JET_COLUMNID columnid, JET_coltyp coltyp, JET_CP cp, int maxLength, byte defaultValue, ColumndefGrbit grbit )
name string Name of the column.
columnid JET_COLUMNID ID of the column.
coltyp JET_coltyp Type of the column.
cp JET_CP Codepage of the column.
maxLength int Maximum length of the column.
defaultValue byte Column default value.
grbit ColumndefGrbit Column option.
        internal ColumnInfo(
            string name,
            JET_COLUMNID columnid,
            JET_coltyp coltyp,
            JET_CP cp,
            int maxLength,
            byte[] defaultValue,
            ColumndefGrbit grbit)
        {
            this.Name = name;
            this.Columnid = columnid;
            this.Coltyp = coltyp;
            this.Cp = cp;
            this.MaxLength = maxLength;
            this.DefaultValue = defaultValue;
            this.Grbit = grbit;
        }
ColumnInfo