1 write to closedEvent
System.ServiceModel (1)
System\ServiceModel\Channels\RequestChannel.cs (1)
137
closedEvent
= new ManualResetEvent(false);
9 references to closedEvent
System.ServiceModel (9)
System\ServiceModel\Channels\RequestChannel.cs (9)
94
if (
closedEvent
!= null)
96
this.
closedEvent
.Close();
112
if (!
closedEvent
.WaitOne(timeout, false))
135
if (createEventIfNecessary &&
closedEvent
== null)
195
if (!closed &&
closedEvent
!= null)
197
closedEvent
.Set();
379
this.waitHandle = ThreadPool.RegisterWaitForSingleObject(this.requestChannel.
closedEvent
, completeWaitCallBack, this, TimeoutHelper.ToMilliseconds(timeout), true);
396
if (requestChannel.
closedEvent
!= null)
400
waitHandle.Unregister(requestChannel.
closedEvent
);