2 types derived from ChainedAsyncResult
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChainedAsyncResult.cs (2)
128internal class ChainedCloseAsyncResult : ChainedAsyncResult 163internal class ChainedOpenAsyncResult : ChainedAsyncResult
5 instantiations of ChainedAsyncResult
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
443return new ChainedAsyncResult(timeout, callback, state, base.OnBeginClose, base.OnEndClose,
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
286return new ChainedAsyncResult(timeout, callback, state, BeginChannelClose, EndChannelClose, BeginFactoryClose, EndFactoryClose); 301return new ChainedAsyncResult(timeout, callback, state, BeginFactoryOpen, EndFactoryOpen, BeginChannelOpen, EndChannelOpen);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityChannel.cs (1)
65return new ChainedAsyncResult(timeout, callback, state, this.BeginCloseSecurityProtocol, this.EndCloseSecurityProtocol,
FrameworkFork\System.ServiceModel\System\ServiceModel\ServiceChannelManager.cs (1)
316return new ChainedAsyncResult(timeout, callback, state, BeginCloseInput, EndCloseInput, OnBeginCloseContinue, OnEndCloseContinue);
10 references to ChainedAsyncResult
dotnet-svcutil-lib (10)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ChainedAsyncResult.cs (5)
56ChainedAsyncResult thisPtr = (ChainedAsyncResult)result.AsyncState; 100ChainedAsyncResult thisPtr = (ChainedAsyncResult)result.AsyncState; 124AsyncResult.End<ChainedAsyncResult>(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelFactory.cs (1)
449ChainedAsyncResult.End(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
291ChainedAsyncResult.End(result); 306ChainedAsyncResult.End(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityChannel.cs (1)
71ChainedAsyncResult.End(result);
FrameworkFork\System.ServiceModel\System\ServiceModel\ServiceChannelManager.cs (1)
336ChainedAsyncResult.End(result);