AsyncDolls.AsyncCountdownEvent.Wait C# (CSharp) Method

Wait() public method

Synchronously waits for this event to be set. This method may block the calling thread.
public Wait ( ) : void
return void
        public void Wait()
        {
            WaitAsync().Wait();
        }

Same methods

AsyncCountdownEvent::Wait ( CancellationToken cancellationToken ) : void