6 implementations of BeginClose
System.ServiceModel.Federation (3)
System\IdentityModel\Security\WrapperSecurityCommunicationObject.cs (1)
386public IAsyncResult BeginClose(AsyncCallback callback, object state)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
243IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
538IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state)
System.ServiceModel.Primitives (3)
netstandard.cs (3)
495System.IAsyncResult System.ServiceModel.ICommunicationObject.BeginClose(System.AsyncCallback callback, object state) { return default; } 553System.IAsyncResult System.ServiceModel.ICommunicationObject.BeginClose(System.AsyncCallback callback, object state) { return default; } 1389public System.IAsyncResult BeginClose(System.AsyncCallback callback, object state) { return default; }
12 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)
254await Task.Factory.FromAsync(channel.BeginClose, channel.EndClose, null, TaskCreationOptions.None);