Microsoft.Isam.Esent.Interop.JET_RETRIEVECOLUMN.GetNativeRetrievecolumn C# (CSharp) Метод

GetNativeRetrievecolumn() приватный Метод

Gets the NATIVE_RETRIEVECOLUMN structure that represents the object.
private GetNativeRetrievecolumn ( ) : NATIVE_RETRIEVECOLUMN
Результат NATIVE_RETRIEVECOLUMN
        internal NATIVE_RETRIEVECOLUMN GetNativeRetrievecolumn()
        {
            var retrievecolumn = new NATIVE_RETRIEVECOLUMN
            {
                columnid = this.columnid.Value,
                cbData = checked((uint)this.cbData),
                grbit = (uint)this.grbit,
                ibLongValue = checked((uint)this.ibLongValue),
                itagSequence = checked((uint)this.itagSequence),
            };
            return retrievecolumn;
        }