1 write to manualResetEvent
Extensibility.MessageInterceptor.IntegrationTests (1)
AsyncResult.cs (1)
53
manualResetEvent
= new ManualResetEvent(isCompleted);
9 references to manualResetEvent
Extensibility.MessageInterceptor.IntegrationTests (9)
AsyncResult.cs (9)
44
if (
manualResetEvent
!= null)
46
return
manualResetEvent
;
51
if (
manualResetEvent
== null)
57
return
manualResetEvent
;
101
Debug.Assert(this.
manualResetEvent
== null, "No ManualResetEvent should be created for a synchronous AsyncResult.");
109
if (this.
manualResetEvent
!= null)
111
this.
manualResetEvent
.Set();
160
if (asyncResult.
manualResetEvent
!= null)
162
asyncResult.
manualResetEvent
.Dispose();