23 references to ChainedAsyncResult
System.ServiceModel (23)
System\ServiceModel\Channels\ChannelDemuxer.cs (4)
1553return new ChainedAsyncResult(timeout, callback, state, this.OnBeginOuterListenerOpen, this.OnEndOuterListenerOpen, base.OnBeginOpen, base.OnEndOpen); 1586return new ChainedAsyncResult(timeout, callback, state, this.OnBeginOuterListenerClose, this.OnEndOuterListenerClose, base.OnBeginClose, base.OnEndClose); 3492return new ChainedAsyncResult(timeout, callback, state, this.OnBeginOuterListenerOpen, this.OnEndOuterListenerOpen, base.OnBeginOpen, base.OnEndOpen); 3525return new ChainedAsyncResult(timeout, callback, state, this.OnBeginOuterListenerClose, this.OnEndOuterListenerClose, base.OnBeginClose, base.OnEndClose);
System\ServiceModel\Channels\ConnectionOrientedTransportChannelListener.cs (2)
408return new ChainedAsyncResult(timeout, callback, state, base.OnBeginClose, base.OnEndClose, begin1, end1); 503return new ChainedAsyncResult(timeout, callback, state, begin1, end1,
System\ServiceModel\Channels\DatagramAdapter.cs (1)
294return new ChainedAsyncResult(timeout, callback, state,
System\ServiceModel\Channels\InternalDuplexChannelFactory.cs (1)
208return new ChainedAsyncResult(timeout, callback, state, base.OnBeginClose, base.OnEndClose, this.innerInputListener.BeginClose, this.innerInputListener.EndClose);
System\ServiceModel\Channels\PeerInputChannel.cs (2)
75return new ChainedAsyncResult(timeout, callback, state, OnBeginCloseNode, OnEndCloseNode, 88return new ChainedAsyncResult(timeout, callback, state, base.OnBeginOpen, base.OnEndOpen,
System\ServiceModel\Channels\ReliableChannelListener.cs (2)
1175return new ChainedAsyncResult(timeout, callback, state, this.channelTracker.BeginOpen, this.channelTracker.EndOpen, 1229return new ChainedAsyncResult(timeout, callback, state, base.BeginCloseInnerListener, base.EndCloseInnerListener,
System\ServiceModel\Channels\SecurityChannelListener.cs (3)
239return new ChainedAsyncResult(timeout, callback, state, this.OnBeginCloseSharedState, this.OnEndCloseSharedState, base.OnBeginClose, base.OnEndClose); 272return new ChainedAsyncResult(timeout, callback, state, base.OnBeginOpen, base.OnEndOpen, this.OnBeginOpenListenerState, this.OnEndOpenListenerState); 758return new ChainedAsyncResult(timeout, callback, state, this.OnBeginCloseSharedState, this.OnEndCloseSharedState, base.OnBeginClose, base.OnEndClose);
System\ServiceModel\Channels\ServiceChannel.cs (1)
1384return new ChainedAsyncResult(timeout, callback, state,
System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
472return new ChainedAsyncResult(timeout, callback, state, base.OnBeginClose, base.OnEndClose,
System\ServiceModel\Channels\TransportReplyChannelAcceptor.cs (2)
61return new ChainedAsyncResult(timeout, callback, state, base.OnBeginClose, base.OnEndClose, begin1, end1); 156return new ChainedAsyncResult(timeout, callback, state, begin1, end1,
System\ServiceModel\ClientBase.cs (2)
710return new ChainedAsyncResult(timeout, callback, state, BeginChannelClose, EndChannelClose, BeginFactoryClose, EndFactoryClose); 725return new ChainedAsyncResult(timeout, callback, state, BeginFactoryOpen, EndFactoryOpen, BeginChannelOpen, EndChannelOpen);
System\ServiceModel\Security\SecurityChannel.cs (1)
65return new ChainedAsyncResult(timeout, callback, state, this.BeginCloseSecurityProtocol, this.EndCloseSecurityProtocol,
System\ServiceModel\ServiceChannelManager.cs (1)
316return new ChainedAsyncResult(timeout, callback, state, BeginCloseInput, EndCloseInput, OnBeginCloseContinue, OnEndCloseContinue);