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();