Implemented interface member:
method
BeginClose
System.ServiceModel.ICommunicationObject.BeginClose(System.TimeSpan, System.AsyncCallback, System.Object)
9 references to BeginClose
System.ServiceModel.Federation (4)
System\IdentityModel\Security\WrapperSecurityCommunicationObject.cs (2)
241return CommunicationObject.BeginClose(timeout, callback, state); 393return CommunicationObject.BeginClose(timeout, callback, state);
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (2)
452await Task.Factory.FromAsync(ChannelFactory.BeginClose, ChannelFactory.EndClose, timeout, null, TaskCreationOptions.None); 545return _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.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);