1 write to _manualResetEvent
System.ServiceModel.Primitives (1)
Internals\System\Runtime\AsyncResult.cs (1)
52
_manualResetEvent
= new ManualResetEvent(IsCompleted);
9 references to _manualResetEvent
System.ServiceModel.Primitives (9)
Internals\System\Runtime\AsyncResult.cs (9)
43
if (
_manualResetEvent
!= null)
45
return
_manualResetEvent
;
50
if (
_manualResetEvent
== null)
56
return
_manualResetEvent
;
121
Fx.Assert(
_manualResetEvent
== null, "No ManualResetEvent should be created for a synchronous AsyncResult.");
129
if (
_manualResetEvent
!= null)
131
_manualResetEvent
.Set();
345
if (asyncResult.
_manualResetEvent
!= null)
347
asyncResult.
_manualResetEvent
.Dispose();