System.Runtime.Remoting.Channels.IChannelSinkBase Interface

Assembly: Mscorlib.dll
Namespace: System.Runtime.Remoting.Channels
Summary
Provides the base interface for channel sinks.
C# Syntax:
public interface IChannelSinkBase
Remarks
Channel sinks provide a plug-in point that allows access to the underlying messages flowing through the channel as well as the stream used by the transport mechanism to send messages to a remote object. Channel sinks are linked together in a chain of sink providers and all channel messages flow through this chain before the message is serialized and transported.
See also:
System.Runtime.Remoting.Channels Namespace

System.Runtime.Remoting.Channels.IChannelSinkBase Member List:

Public Properties
Properties Read-only

Gets a dictionary through which properties on the sink can be accessed.

System.Runtime.Remoting.Channels.IChannelSinkBase Member Details

Property: Properties (read-only)
Summary
Gets a dictionary through which properties on the sink can be accessed.
C# Syntax:
IDictionary Properties {get;}
Remarks
If a property is not present in this channel sink, it delegates the property access request to the next sink in the chain.

Return to top


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.