ResetEvent_internal() 개인적인 메소드

private ResetEvent_internal ( IntPtr handle ) : bool
handle System.IntPtr
리턴 bool
예제 #1
0
        public bool Reset()
        {
            /* This needs locking since another thread could dispose the handle */
            lock (this) {
                CheckDisposed();

                return(NativeEventCalls.ResetEvent_internal(Handle));
            }
        }
예제 #2
0
 public bool Reset()
 {
     CheckDisposed();
     return(NativeEventCalls.ResetEvent_internal(Handle));
 }