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