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)
467await Task.Factory.FromAsync(ChannelFactory.BeginClose, ChannelFactory.EndClose, timeout, null, TaskCreationOptions.None); 563return _communicationObject.BeginClose(timeout, callback, state);
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\NetFramingTransportChannelFactory.cs (1)
357await Task.Factory.FromAsync(localUpgrade.BeginClose, localUpgrade.EndClose, timeoutHelper.RemainingTime(), null);
System.ServiceModel.Primitives (4)
System\ServiceModel\Channels\CommunicationObject.cs (1)
194return BeginClose(DefaultCloseTimeout, callback, state);
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
595return _serviceChannel.BeginClose(timeout, callback, state);
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
217return CommunicationObject.BeginClose(timeout, callback, state); 374return CommunicationObject.BeginClose(timeout, callback, state);
System.ServiceModel.Primitives.Tests (4)
Channels\CommunicationObjectTest.cs (4)
64IAsyncResult closeAr = mco.BeginClose(timeout, callback: null, state: null); 155IAsyncResult closeAr = mco.BeginClose(timeout, callback: null, state: null); 250IAsyncResult closeAr = mco.BeginClose(timeout, callback: null, state: null); 401IAsyncResult closeAr = mco.BeginClose(timeout, callback: null, state: null);