System.Runtime.Remoting.Channels.IChannelDataStore Interface

Assembly: Mscorlib.dll
Namespace: System.Runtime.Remoting.Channels
Summary
Stores channel data for the remoting channels.
C# Syntax:
public interface IChannelDataStore
Remarks
Channels that want to use the channel sink architecture must implement this interface on their ChannelData object.
See also:
System.Runtime.Remoting.Channels Namespace

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

Public Properties
ChannelUris Read-only

Gets an array of channel URIs to which the current channel maps.
Item Read-write

Gets or sets the data object associated with the specified key for the implementing channel.

System.Runtime.Remoting.Channels.IChannelDataStore Member Details

Property: ChannelUris (read-only)
Summary
Gets an array of channel URIs to which the current channel maps.
C# Syntax:
string[] ChannelUris {get;}

Return to top


Property: Item (read-write)
Summary
Gets or sets the data object associated with the specified key for the implementing channel.
C# Syntax:
object this[object key] {get; set;}
Parameters:

key

The key the data object is associated with.

Return to top


Top of page

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