11 implementations of BeginOpen
System.ServiceModel (9)
System\ServiceModel\Channels\CommunicationObject.cs (1)
221public IAsyncResult BeginOpen(AsyncCallback callback, object state)
System\ServiceModel\ClientBase.cs (2)
718IAsyncResult ICommunicationObject.BeginOpen(AsyncCallback callback, object state) 1328IAsyncResult ICommunicationObject.BeginOpen(AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1530public IAsyncResult BeginOpen(AsyncCallback callback, object state)
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (1)
336public IAsyncResult BeginOpen(AsyncCallback callback, object state)
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (1)
176public System.IAsyncResult BeginOpen( System.AsyncCallback callback, object state )
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
225public IAsyncResult BeginOpen(AsyncCallback callback, object state) 402public IAsyncResult BeginOpen(AsyncCallback callback, object state)
System\ServiceModel\Security\WSTrustChannel.cs (1)
812public IAsyncResult BeginOpen(AsyncCallback callback, object state)
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\AnnouncementClient.cs (1)
446IAsyncResult ICommunicationObject.BeginOpen(AsyncCallback callback, object state)
System\ServiceModel\Discovery\DiscoveryClient.cs (1)
262IAsyncResult ICommunicationObject.BeginOpen(AsyncCallback callback, object state)
9 references to BeginOpen
System.ServiceModel (7)
System\ServiceModel\Channels\ChannelDemuxer.cs (1)
2424IAsyncResult result = this.channel.BeginOpen(onOpenComplete, this);
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
219return this.innerInputChannel.BeginOpen(callback, state);
System\ServiceModel\Channels\ReliableChannelFactory.cs (1)
134return this.innerChannelFactory.BeginOpen(callback, state);
System\ServiceModel\ClientBase.cs (1)
1330return ((ICommunicationObject)this.channel).BeginOpen(callback, state);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1532return this.innerChannel.BeginOpen(callback, state);
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (1)
178return _communicationObject.BeginOpen( callback, state );
System\ServiceModel\Security\WSTrustChannel.cs (1)
814return Channel.BeginOpen(callback, state);
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\AnnouncementClient.cs (1)
448return InnerCommunicationObject.BeginOpen(callback, state);
System\ServiceModel\Discovery\DiscoveryClient.cs (1)
264return this.InnerCommunicationObject.BeginOpen(callback, state);