1 write to waitHandle
System.Activities (1)
System\Activities\WorkflowApplication.cs (1)
5406
this.
waitHandle
= new AsyncWaitHandle();
6 references to waitHandle
System.Activities (6)
System\Activities\WorkflowApplication.cs (6)
5416
Fx.Assert(this.
waitHandle
!= null, "We must have a wait handle.");
5418
waitHandle
.Set();
5423
if (this.
waitHandle
!= null)
5425
return this.
waitHandle
.Wait(timeout);
5433
if (this.
waitHandle
!= null)
5435
return this.
waitHandle
.WaitAsync(callback, state, timeout);