2 types derived from ChainedAsyncResult
System.ServiceModel (2)
System\ServiceModel\Channels\ChainedAsyncResult.cs (2)
129internal class ChainedCloseAsyncResult : ChainedAsyncResult 164internal class ChainedOpenAsyncResult : ChainedAsyncResult
23 instantiations of 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);
28 references to ChainedAsyncResult
System.ServiceModel (28)
System\ServiceModel\Channels\ChainedAsyncResult.cs (5)
57ChainedAsyncResult thisPtr = (ChainedAsyncResult)result.AsyncState; 101ChainedAsyncResult thisPtr = (ChainedAsyncResult)result.AsyncState; 125AsyncResult.End<ChainedAsyncResult>(result);
System\ServiceModel\Channels\ChannelDemuxer.cs (4)
1558ChainedAsyncResult.End(result); 1591ChainedAsyncResult.End(result); 3497ChainedAsyncResult.End(result); 3530ChainedAsyncResult.End(result);
System\ServiceModel\Channels\ConnectionOrientedTransportChannelListener.cs (2)
413ChainedAsyncResult.End(result); 509ChainedAsyncResult.End(result);
System\ServiceModel\Channels\DatagramAdapter.cs (1)
301ChainedAsyncResult.End(result);
System\ServiceModel\Channels\InternalDuplexChannelFactory.cs (1)
220ChainedAsyncResult.End(result);
System\ServiceModel\Channels\PeerInputChannel.cs (2)
133ChainedAsyncResult.End(result); 143ChainedAsyncResult.End(result);
System\ServiceModel\Channels\ReliableChannelListener.cs (2)
1181ChainedAsyncResult.End(result); 1235ChainedAsyncResult.End(result);
System\ServiceModel\Channels\SecurityChannelListener.cs (3)
244ChainedAsyncResult.End(result); 277ChainedAsyncResult.End(result); 763ChainedAsyncResult.End(result);
System\ServiceModel\Channels\ServiceChannel.cs (1)
1470ChainedAsyncResult.End(result);
System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
478ChainedAsyncResult.End(result);
System\ServiceModel\Channels\TransportReplyChannelAcceptor.cs (2)
66ChainedAsyncResult.End(result); 162ChainedAsyncResult.End(result);
System\ServiceModel\ClientBase.cs (2)
715ChainedAsyncResult.End(result); 730ChainedAsyncResult.End(result);
System\ServiceModel\Security\SecurityChannel.cs (1)
71ChainedAsyncResult.End(result);
System\ServiceModel\ServiceChannelManager.cs (1)
336ChainedAsyncResult.End(result);