11 implementations of BeginOpen
System.ServiceModel (9)
System\ServiceModel\Channels\CommunicationObject.cs (1)
226
public IAsyncResult
BeginOpen
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\ClientBase.cs (2)
723
IAsyncResult ICommunicationObject.
BeginOpen
(TimeSpan timeout, AsyncCallback callback, object state)
1333
IAsyncResult ICommunicationObject.
BeginOpen
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1535
public IAsyncResult
BeginOpen
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (1)
342
public IAsyncResult
BeginOpen
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (1)
171
public System.IAsyncResult
BeginOpen
( System.TimeSpan timeout, System.AsyncCallback callback, object state )
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (2)
230
public IAsyncResult
BeginOpen
(TimeSpan timeout, AsyncCallback callback, object state)
407
public IAsyncResult
BeginOpen
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\WSTrustChannel.cs (1)
795
public IAsyncResult
BeginOpen
(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Discovery (2)
System\ServiceModel\Discovery\AnnouncementClient.cs (1)
452
IAsyncResult ICommunicationObject.
BeginOpen
(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Discovery\DiscoveryClient.cs (1)
269
IAsyncResult ICommunicationObject.
BeginOpen
(TimeSpan timeout, AsyncCallback callback, object state)
27 references to BeginOpen
System.ServiceModel (22)
System\ServiceModel\ChannelFactory.cs (1)
424
IAsyncResult result = this.communicationObject.
BeginOpen
(timeout, onOpenComplete, this);
System\ServiceModel\Channels\ConnectionOrientedTransportChannelFactory.cs (1)
327
IAsyncResult result = this.communicationObject.
BeginOpen
(timeout, onOpenComplete, this);
System\ServiceModel\Channels\LayeredChannel.cs (1)
76
return this.innerChannel.
BeginOpen
(timeout, callback, state);
System\ServiceModel\Channels\LayeredChannelFactory.cs (1)
43
return this.innerChannelFactory.
BeginOpen
(timeout, callback, state);
System\ServiceModel\Channels\LayeredChannelListener.cs (1)
204
IAsyncResult result = this.communicationObject.
BeginOpen
(timeout, onOpenComplete, this);
System\ServiceModel\Channels\OneWayChannelFactory.cs (2)
132
return this.innerChannel.
BeginOpen
(timeout, callback, state);
305
return this.innerChannel.
BeginOpen
(timeout, callback, state);
System\ServiceModel\Channels\OneWayChannelListener.cs (1)
928
openResult = channel.
BeginOpen
(this.idleTimeout, onOpenInnerChannel, channel);
System\ServiceModel\Channels\ReliableChannelListener.cs (1)
220
new OperationWithTimeoutBeginCallback(this.InnerChannelListener.
BeginOpen
)
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (1)
410
return this.listener.
BeginOpen
(timeout, callback, state);
System\ServiceModel\Channels\ServiceChannel.cs (1)
1421
return this.InnerChannel.
BeginOpen
(timeout, callback, state);
System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
455
return this.innerChannelFactory.
BeginOpen
(timeout, callback, state);
System\ServiceModel\ClientBase.cs (3)
720
return ((ICommunicationObject)this).
BeginOpen
(GetChannelFactory().InternalOpenTimeout, callback, state);
761
return this.InnerChannel.
BeginOpen
(timeout, callback, state);
1335
return ((ICommunicationObject)this.channel).
BeginOpen
(timeout, callback, state);
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (1)
759
return this.listener.
BeginOpen
(timeout, callback, state);
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (1)
1537
return this.innerChannel.
BeginOpen
(timeout, callback, state);
System\ServiceModel\Security\SecurityListenerSettingsLifetimeManager.cs (1)
97
beginOperations.Add(new OperationWithTimeoutBeginCallback(this.innerListener.
BeginOpen
));
System\ServiceModel\Security\SecurityUtils.cs (1)
1661
IAsyncResult result = this.communicationObject.
BeginOpen
(timeout, onOpen, this);
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (1)
766
return this.channelFactory.
BeginOpen
(timeout, callback, state);
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (1)
173
return _communicationObject.
BeginOpen
( timeout, callback, state );
System\ServiceModel\Security\WSTrustChannel.cs (1)
797
return Channel.
BeginOpen
(timeout, callback, state);
System.ServiceModel.Discovery (5)
System\ServiceModel\Discovery\AnnouncementClient.cs (1)
454
return InnerCommunicationObject.
BeginOpen
(timeout, callback, state);
System\ServiceModel\Discovery\DiscoveryClient.cs (1)
271
return this.InnerCommunicationObject.
BeginOpen
(timeout, callback, state);
System\ServiceModel\Discovery\DiscoveryClientChannelBase.cs (1)
541
(thisPtr, t, c, s) => thisPtr.innerChannel.
BeginOpen
(thisPtr.RemainingTime(), c, s),
System\ServiceModel\Discovery\DiscoveryClientChannelFactory.cs (1)
116
return this.innerChannelFactory.
BeginOpen
(timeout, callback, state);
System\ServiceModel\Discovery\OfflineAnnouncementChannelDispatcher.cs (1)
80
return this.closeListener.
BeginOpen
(timeout, callback, state);