Base:
method
OnBeginOpen
System.ServiceModel.Channels.LayeredChannelListener<TChannel>.OnBeginOpen(System.TimeSpan, System.AsyncCallback, System.Object)
5 overrides of OnBeginOpen
System.ServiceModel (5)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
1551protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 3490protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
63protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableChannelListener.cs (1)
212protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback,
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
267protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
5 references to OnBeginOpen
System.ServiceModel (5)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
1553return new ChainedAsyncResult(timeout, callback, state, this.OnBeginOuterListenerOpen, this.OnEndOuterListenerOpen, base.OnBeginOpen, base.OnEndOpen); 3492return new ChainedAsyncResult(timeout, callback, state, this.OnBeginOuterListenerOpen, this.OnEndOuterListenerOpen, base.OnBeginOpen, base.OnEndOpen);
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
65return new ChainedOpenAsyncResult(timeout, callback, state, base.OnBeginOpen, base.OnEndOpen, this.innerChannelFactory);
System\ServiceModel\Channels\ReliableChannelListener.cs (1)
219new OperationWithTimeoutBeginCallback(base.OnBeginOpen),
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
272return new ChainedAsyncResult(timeout, callback, state, base.OnBeginOpen, base.OnEndOpen, this.OnBeginOpenListenerState, this.OnEndOpenListenerState);