6 implementations of BeginOpen
System.ServiceModel.Federation (3)
System\IdentityModel\Security\WrapperSecurityCommunicationObject.cs (1)
416public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
263IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
568IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Primitives (3)
netstandard.cs (3)
498System.IAsyncResult System.ServiceModel.ICommunicationObject.BeginOpen(System.TimeSpan timeout, System.AsyncCallback callback, object state) { return default; } 556System.IAsyncResult System.ServiceModel.ICommunicationObject.BeginOpen(System.TimeSpan timeout, System.AsyncCallback callback, object state) { return default; } 1392public System.IAsyncResult BeginOpen(System.TimeSpan timeout, System.AsyncCallback callback, object state) { return default; }
7 references to BeginOpen
Client.ClientBase.IntegrationTests (1)
ClientBaseTests.4.0.0.cs (1)
389IAsyncResult ar = ((ICommunicationObject)client).BeginOpen(timeout, null, null);
Extensibility.MessageInterceptor.IntegrationTests (2)
InterceptingChannelBase.cs (1)
62return this.innerChannel.BeginOpen(timeout, callback, state);
InterceptingChannelFactory.cs (1)
52return this.innerChannelFactory.BeginOpen(timeout, callback, state);
System.ServiceModel.Federation (1)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
265return RequestChannel.BeginOpen(timeout, callback, state);
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Security\SecurityUtilsEx.cs (1)
107return Task.Factory.FromAsync(obj.BeginOpen, obj.EndOpen, timeout, null);
System.ServiceModel.Primitives.Tests (2)
ServiceModel\ThrowingChannelBase.cs (1)
43protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) => InnerChannel.BeginOpen(timeout, callback, state);
ServiceModel\ThrowingOnCloseBindingElement.cs (1)
79return ToApm(Task.Factory.FromAsync(_innerFactory.BeginOpen, _innerFactory.EndOpen, timeout, null), callback, state);