IClientChannelSinkStack Interface
Provides functionality for a stack of client channel sinks that must be invoked during an asynchronous message response decoding.
For a list of all members of this type, see IClientChannelSinkStack Members.
System.Runtime.Remoting.Channels.IClientResponseChannelSinkStack
System.Runtime.Remoting.Channels.IClientChannelSinkStack
[Visual Basic] Public Interface IClientChannelSinkStack Inherits IClientResponseChannelSinkStack [C#] public interface IClientChannelSinkStack : IClientResponseChannelSinkStack [C++] public __gc __interface IClientChannelSinkStack : public IClientResponseChannelSinkStack [JScript] public interface IClientChannelSinkStack implements IClientResponseChannelSinkStack
Classes that Implement IClientChannelSinkStack
| Class | Description |
|---|---|
| ClientChannelSinkStack | Holds the stack of client channel sinks that must be invoked during an asynchronous message response decoding. |
Remarks
The IClientChannelSinkStack is used during processing of responses to Asynchronous Calls.
During a synchronous call, the IClientChannelSink.ProcessMessage method is called when a message is outbound to the server. Each sink in the sink chain calls the ProcessMessage method on the next sink until the call reaches the Transport Sink at the end of the chain. From there the message is transported to the server.
When the formatter sink is called through the AsyncProcessMessage method, it dispatches the call asynchronously by calling AsyncProcessRequest on the next channel sink. A stack of reply sinks is needed to process the response. Any sink that wants to process the response needs to push itself to the client channel sink stack inside of AsyncProcessRequest.
Requirements
Namespace: System.Runtime.Remoting.Channels
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: Mscorlib (in Mscorlib.dll)
See Also
IClientChannelSinkStack Members | System.Runtime.Remoting.Channels Namespace | IClientChannelSink