1 write to _manualResetEvent
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\AsyncResult.cs (1)
62
_manualResetEvent
= new ManualResetEvent(_isCompleted);
9 references to _manualResetEvent
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\Internals\System\Runtime\AsyncResult.cs (9)
53
if (
_manualResetEvent
!= null)
55
return
_manualResetEvent
;
60
if (
_manualResetEvent
== null)
66
return
_manualResetEvent
;
143
Fx.Assert(
_manualResetEvent
== null, "No ManualResetEvent should be created for a synchronous AsyncResult.");
151
if (
_manualResetEvent
!= null)
153
_manualResetEvent
.Set();
370
if (asyncResult.
_manualResetEvent
!= null)
372
asyncResult.
_manualResetEvent
.Dispose();