mscorlib(4.0.0.0) API with additions
IChannelDataStore.cs
2 using System.Security;
3 
5 {
7  [ComVisible(true)]
8  public interface IChannelDataStore
9  {
13  string[] ChannelUris
14  {
15  [SecurityCritical]
16  get;
17  }
18 
23  object this[object key]
24  {
25  [SecurityCritical]
26  get;
27  [SecurityCritical]
28  set;
29  }
30  }
31 }
string [] ChannelUris
Gets an array of channel URIs to which the current channel maps.
Definition: __Canon.cs:3
Stores channel data for the remoting channels.