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