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

IndexSegment() private method

Initializes a new instance of the IndexSegment class.
private IndexSegment ( string name, JET_coltyp coltyp, bool isAscending, bool isASCII )
name string The name of the indexed column.
coltyp JET_coltyp The type of the column.
isAscending bool True if the column is ascending.
isASCII bool True if the column is over an ASCII column.
        internal IndexSegment(
            string name,
            JET_coltyp coltyp,
            bool isAscending,
            bool isASCII)
        {
            this.ColumnName = name;
            this.Coltyp = coltyp;
            this.IsAscending = isAscending;
            this.IsASCII = isASCII;
        }
IndexSegment