9 implementations of BeginOpen
System.ServiceModel.Federation (2)
System\ServiceModel\Federation\WSTrustChannel.cs (1)
263IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
586IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Primitives (7)
System\ServiceModel\Channels\CommunicationObject.cs (1)
207public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
618IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\ClientBase.cs (2)
614IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1118IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1490public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
245public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 397public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
17 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 (10)
Internals\System\Runtime\TaskHelpers.cs (1)
211return Task.Factory.FromAsync(communicationObject.BeginOpen, communicationObject.EndOpen, timeout, null);
System\ServiceModel\Channels\CommunicationObject.cs (1)
1041return Task.Factory.FromAsync(other.BeginOpen, other.EndOpen, timeout, null);
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
39return InnerChannelFactory.BeginOpen(timeout, callback, state);
System\ServiceModel\Channels\OpenCollectionAsyncResult.cs (1)
42IAsyncResult result = collection[index].BeginOpen(_timeoutHelper.RemainingTime(), s_nestedCallback, callbackState);
System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
444return InnerChannelFactory.BeginOpen(timeout, callback, state);
System\ServiceModel\ClientBase.cs (2)
611return ((ICommunicationObject)this).BeginOpen(GetChannelFactory().InternalOpenTimeout, callback, state); 1120return ((ICommunicationObject)_channel).BeginOpen(timeout, callback, state);
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (1)
521return _listener.BeginOpen(timeout, callback, state);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1492return _innerChannel.BeginOpen(timeout, callback, state);
System\ServiceModel\Security\SecurityUtils.cs (1)
514return Task.Factory.FromAsync(communicationObject.BeginOpen, communicationObject.EndOpen, timeout, null, TaskCreationOptions.None);
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);