Base:
method
OnBeginClose
System.ServiceModel.Channels.LayeredChannelListener<TChannel>.OnBeginClose(System.TimeSpan, System.AsyncCallback, System.Object)
6 overrides of OnBeginClose
System.ServiceModel (6)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
1584protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 3523protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\DatagramAdapter.cs (1)
292protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
40protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableChannelListener.cs (1)
193protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback,
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
229protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
6 references to OnBeginClose
System.ServiceModel (6)
System\ServiceModel\Channels\ChannelDemuxer.cs (2)
1586return new ChainedAsyncResult(timeout, callback, state, this.OnBeginOuterListenerClose, this.OnEndOuterListenerClose, base.OnBeginClose, base.OnEndClose); 3525return new ChainedAsyncResult(timeout, callback, state, this.OnBeginOuterListenerClose, this.OnEndOuterListenerClose, base.OnBeginClose, base.OnEndClose);
System\ServiceModel\Channels\DatagramAdapter.cs (1)
295base.OnBeginClose, base.OnEndClose,
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (1)
42return new ChainedCloseAsyncResult(timeout, callback, state, base.OnBeginClose, base.OnEndClose, this.innerChannelFactory);
System\ServiceModel\Channels\ReliableChannelListener.cs (1)
196return new CloseAsyncResult(this, base.OnBeginClose, base.OnEndClose, timeout,
System\ServiceModel\Channels\SecurityChannelListener.cs (1)
239return new ChainedAsyncResult(timeout, callback, state, this.OnBeginCloseSharedState, this.OnEndCloseSharedState, base.OnBeginClose, base.OnEndClose);