9 implementations of BeginClose
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
226IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
561IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Primitives (7)
System\ServiceModel\Channels\CommunicationObject.cs (1)
197public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
593IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\ClientBase.cs (2)
599IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1093IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1436public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
215public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 372public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
13 references to BeginClose
Client.ClientBase.IntegrationTests (1)
ClientBaseTests.4.0.0.cs (1)
407ar = ((ICommunicationObject)client).BeginClose(timeout, null, null);
Extensibility.MessageInterceptor.IntegrationTests (2)
InterceptingChannelBase.cs (1)
57return this.innerChannel.BeginClose(timeout, callback, state);
InterceptingChannelFactory.cs (1)
75return new ChainedAsyncResult(timeout, callback, state, base.OnBeginClose, base.OnEndClose, innerChannelFactory.BeginClose, innerChannelFactory.EndClose);
System.ServiceModel.Federation (1)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
228return RequestChannel.BeginClose(timeout, callback, state);
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Security\SecurityUtilsEx.cs (1)
92return Task.Factory.FromAsync(co.BeginClose, co.EndClose, timeout, null, TaskCreationOptions.None);
System.ServiceModel.Primitives (7)
Internals\System\Runtime\TaskHelpers.cs (1)
199return Task.Factory.FromAsync(communicationObject.BeginClose, communicationObject.EndClose, timeout, null);
System\ServiceModel\Channels\CloseCollectionAsyncResult.cs (1)
38result = collection[index].BeginClose(timeoutHelper.RemainingTime(), s_nestedCallback, callbackState);
System\ServiceModel\Channels\CommunicationObject.cs (1)
1071return Task.Factory.FromAsync(other.BeginClose, other.EndClose, timeout, null);
System\ServiceModel\ClientBase.cs (2)
596return ((ICommunicationObject)this).BeginClose(GetChannelFactory().InternalCloseTimeout, callback, state); 1095return ((ICommunicationObject)_channel).BeginClose(timeout, callback, state);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1445return _innerChannel.BeginClose(timeout, callback, state);
System\ServiceModel\Security\SecurityUtils.cs (1)
535return Task.Factory.FromAsync(communicationObject.BeginClose, communicationObject.EndClose, timeout, null, TaskCreationOptions.None);
System.ServiceModel.Primitives.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
122await Task.Factory.FromAsync(_innerFactory.BeginClose, _innerFactory.EndClose, timeout, null);