ResetEvent_internal() private méthode

private ResetEvent_internal ( IntPtr handle ) : bool
handle System.IntPtr
Résultat bool
Exemple #1
0
        public bool Reset()
        {
            /* This needs locking since another thread could dispose the handle */
            lock (this) {
                CheckDisposed();

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