Microsoft.Isam.Esent.Interop.Vista.JET_THREADSTATS.SetFromNativeThreadstats C# (CSharp) Method

SetFromNativeThreadstats() private method

Sets the fields of the object from a NATIVE_THREADSTATS struct.
private SetFromNativeThreadstats ( NATIVE_THREADSTATS value ) : void
value NATIVE_THREADSTATS /// The native threadstats to set the values from. ///
return void
        internal void SetFromNativeThreadstats(NATIVE_THREADSTATS value)
        {
            this.cPageReferenced = checked((int)value.cPageReferenced);
            this.cPageRead = checked((int)value.cPageRead);
            this.cPagePreread = checked((int)value.cPagePreread);
            this.cPageDirtied = checked((int)value.cPageDirtied);
            this.cPageRedirtied = checked((int)value.cPageRedirtied);
            this.cLogRecord = checked((int)value.cLogRecord);
            this.cbLogRecord = checked((int)value.cbLogRecord);
        }