Microsoft.Isam.Esent.Interop.JET_RECORDLIST.SetFromNativeRecordlist C# (CSharp) Method

SetFromNativeRecordlist() private method

Sets the fields of the object from a native JET_RECORDLIST struct.
private SetFromNativeRecordlist ( NATIVE_RECORDLIST value ) : void
value NATIVE_RECORDLIST /// The native recordlist to set the values from. ///
return void
        internal void SetFromNativeRecordlist(NATIVE_RECORDLIST value)
        {
            this.tableid = new JET_TABLEID { Value = value.tableid };
            this.cRecords = checked((int) value.cRecords);
            this.columnidBookmark = new JET_COLUMNID { Value = value.columnidBookmark };
        }