Implemented interface member:
method
BeginOpen
System.ServiceModel.ICommunicationObject.BeginOpen(System.TimeSpan, System.AsyncCallback, System.Object)
8 references to BeginOpen
dotnet-svcutil-lib (8)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\CommunicationObject.cs (1)
128return this.BeginOpen(this.DefaultOpenTimeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
1981return channel.BeginOpen(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (1)
610return _serviceChannel.BeginOpen(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
313return _channelFactory.BeginOpen(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityProtocolFactory.cs (1)
1046return this.CommunicationObject.BeginOpen(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
259return _communicationObject.BeginOpen(timeout, callback, state); 434return _communicationObject.BeginOpen(timeout, callback, state);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustFeb2005.cs (1)
278return _innerChannelFactory.BeginOpen(timeout, callback, state);