9 implementations of BeginClose
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
243IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
556IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state)
System.ServiceModel.Primitives (7)
System\ServiceModel\Channels\CommunicationObject.cs (1)
192public IAsyncResult BeginClose(AsyncCallback callback, object state)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
588IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state)
System\ServiceModel\ClientBase.cs (2)
594IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state) 1088IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1431public IAsyncResult BeginClose(AsyncCallback callback, object state)
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
210public IAsyncResult BeginClose(AsyncCallback callback, object state) 367public IAsyncResult BeginClose(AsyncCallback callback, object state)
15 references to BeginClose
Client.ChannelLayer.IntegrationTests (6)
DuplexChannelShapeTests.4.0.0.cs (2)
125Task.Factory.FromAsync(channel.BeginClose, channel.EndClose, TaskCreationOptions.None).GetAwaiter().GetResult(); 126Task.Factory.FromAsync(factory.BeginClose, factory.EndClose, TaskCreationOptions.None).GetAwaiter().GetResult();
RequestReplyChannelShapeTests.4.0.0.cs (4)
171Task.Factory.FromAsync(channel.BeginClose, channel.EndClose, TaskCreationOptions.None).GetAwaiter().GetResult(); 172Task.Factory.FromAsync(factory.BeginClose, factory.EndClose, TaskCreationOptions.None).GetAwaiter().GetResult(); 228Task.Factory.FromAsync(channel.BeginClose, channel.EndClose, TaskCreationOptions.None).GetAwaiter().GetResult(); 229Task.Factory.FromAsync(factory.BeginClose, factory.EndClose, TaskCreationOptions.None).GetAwaiter().GetResult();
Client.ClientBase.IntegrationTests (3)
ChannelBaseTests.4.0.0.cs (1)
135ar = ((ICommunicationObject)client).BeginClose(null, null);
ClientBaseTests.4.0.0.cs (2)
328ar = ((ICommunicationObject)client).BeginClose(null, null); 610IAsyncResult ar = ((ICommunicationObject)client).BeginClose(null, null);
Contract.Service.IntegrationTests (1)
ServiceContractTests.4.0.0.cs (1)
465Task t = Task.Factory.FromAsync(proxyAsCommunicationObject.BeginClose, proxyAsCommunicationObject.EndClose, TaskCreationOptions.None);
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
245return RequestChannel.BeginClose(callback, state);
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
268await Task.Factory.FromAsync(channel.BeginClose, channel.EndClose, null, TaskCreationOptions.None);
System.ServiceModel.Primitives (3)
System\ServiceModel\Channels\ReliableChannelBinder.cs (1)
296IAsyncResult result = channel.BeginClose(_onCloseChannelComplete, channel);
System\ServiceModel\ClientBase.cs (1)
1090return ((ICommunicationObject)_channel).BeginClose(callback, state);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1278result = _innerChannel.BeginClose(s_closeInnerChannelCallback, this);