EventWaitHandle.cs 480 B

12345678910111213
  1. namespace System.Threading
  2. {
  3. partial class EventWaitHandle
  4. {
  5. public bool Set () => throw new NotImplementedException ();
  6. public bool Reset () => throw new NotImplementedException ();
  7. private void CreateEventCore (bool initialState, EventResetMode mode, string name, out bool createdNew) => throw new NotImplementedException ();
  8. private static OpenExistingResult OpenExistingWorker(string name, out EventWaitHandle result) => throw new NotImplementedException ();
  9. }
  10. }