System.Threading.NativeEventCalls.ResetEvent_internal C# (CSharp) Method

ResetEvent_internal() private method

private ResetEvent_internal ( IntPtr handle ) : bool
handle System.IntPtr
return bool
		public static extern bool ResetEvent_internal(IntPtr handle);
	

Usage Example

Esempio n. 1
0
        public bool Reset()
        {
            /* This needs locking since another thread could dispose the handle */
            lock (this) {
                CheckDisposed();

                return(NativeEventCalls.ResetEvent_internal(Handle));
            }
        }
All Usage Examples Of System.Threading.NativeEventCalls::ResetEvent_internal