Implemented interface member:
method
BeginClose
System.ServiceModel.ICommunicationObject.BeginClose(System.TimeSpan, System.AsyncCallback, System.Object)
11 references to BeginClose
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (2)
467
await Task.Factory.FromAsync(ChannelFactory.
BeginClose
, ChannelFactory.EndClose, timeout, null, TaskCreationOptions.None);
563
return _communicationObject.
BeginClose
(timeout, callback, state);
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\NetFramingTransportChannelFactory.cs (1)
357
await Task.Factory.FromAsync(localUpgrade.
BeginClose
, localUpgrade.EndClose, timeoutHelper.RemainingTime(), null);
System.ServiceModel.Primitives (4)
System\ServiceModel\Channels\CommunicationObject.cs (1)
194
return
BeginClose
(DefaultCloseTimeout, callback, state);
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
595
return _serviceChannel.
BeginClose
(timeout, callback, state);
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
217
return CommunicationObject.
BeginClose
(timeout, callback, state);
374
return CommunicationObject.
BeginClose
(timeout, callback, state);
System.ServiceModel.Primitives.Tests (4)
Channels\CommunicationObjectTest.cs (4)
64
IAsyncResult closeAr = mco.
BeginClose
(timeout, callback: null, state: null);
155
IAsyncResult closeAr = mco.
BeginClose
(timeout, callback: null, state: null);
250
IAsyncResult closeAr = mco.
BeginClose
(timeout, callback: null, state: null);
401
IAsyncResult closeAr = mco.
BeginClose
(timeout, callback: null, state: null);