Microsoft.Isam.Esent.Interop.JET_SETCOLUMN.GetNativeSetcolumn C# (CSharp) Method

GetNativeSetcolumn() private method

Gets the NATIVE_SETCOLUMN structure that represents the object.
private GetNativeSetcolumn ( ) : NATIVE_SETCOLUMN
return NATIVE_SETCOLUMN
        internal NATIVE_SETCOLUMN GetNativeSetcolumn()
        {
            var setinfo = new NATIVE_SETCOLUMN
            {
                columnid = this.columnid.Value,
                cbData = checked((uint) this.cbData),
                grbit = (uint) this.grbit,
                ibLongValue = checked((uint) this.ibLongValue),
                itagSequence = checked((uint) this.itagSequence),
            };
            return setinfo;
        }