DoWait() публичный Метод

public DoWait ( IQueuedSync sync ) : void
sync IQueuedSync
Результат void
 public override void LockInterruptibly()
 {
     var caller = Thread.CurrentThread;
     lock (this)
     {
         if (GetHold(caller)) return;
     }
     var n = new WaitNode();
     n.DoWait(this);
 }