1 write to manualResetEvent
System.ServiceModel.Internals (1)
System\Runtime\AsyncResult.cs (1)
71
manualResetEvent
= new ManualResetEvent(isCompleted);
9 references to manualResetEvent
System.ServiceModel.Internals (9)
System\Runtime\AsyncResult.cs (9)
62
if (
manualResetEvent
!= null)
64
return
manualResetEvent
;
69
if (
manualResetEvent
== null)
75
return
manualResetEvent
;
159
Fx.Assert(this.
manualResetEvent
== null, "No ManualResetEvent should be created for a synchronous AsyncResult.");
167
if (this.
manualResetEvent
!= null)
169
this.
manualResetEvent
.Set();
399
if (asyncResult.
manualResetEvent
!= null)
401
asyncResult.
manualResetEvent
.Close();