Base:
method
OnBeginClose
System.ServiceModel.Channels.CommunicationObject.OnBeginClose(System.TimeSpan, System.AsyncCallback, System.Object)
4 overrides of OnBeginClose
System.ServiceModel (4)
System\ServiceModel\Channels\ConnectionOrientedTransportChannelListener.cs (1)
297protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\HttpChannelListener.cs (1)
997protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (1)
95protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\PeerChannelListener.cs (1)
195protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
3 references to OnBeginClose
System.ServiceModel (3)
System\ServiceModel\Channels\ConnectionOrientedTransportChannelListener.cs (2)
302return new ChainedCloseAsyncResult(timeout, callback, state, base.OnBeginClose, base.OnEndClose, localUpgrade); 306return new ChainedCloseAsyncResult(timeout, callback, state, base.OnBeginClose, base.OnEndClose);
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (1)
98return base.OnBeginClose(timeout, callback, state);