6 implementations of BeginClose
System.ServiceModel.Federation (3)
System\IdentityModel\Security\WrapperSecurityCommunicationObject.cs (1)
391public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
226IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
543IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Primitives (3)
netstandard.cs (3)
496System.IAsyncResult System.ServiceModel.ICommunicationObject.BeginClose(System.TimeSpan timeout, System.AsyncCallback callback, object state) { return default; } 554System.IAsyncResult System.ServiceModel.ICommunicationObject.BeginClose(System.TimeSpan timeout, System.AsyncCallback callback, object state) { return default; } 1390public System.IAsyncResult BeginClose(System.TimeSpan timeout, System.AsyncCallback callback, object state) { return default; }
6 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.Tests (1)
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
122await Task.Factory.FromAsync(_innerFactory.BeginClose, _innerFactory.EndClose, timeout, null);