mscorlib(4.0.0.0) API with additions
IChannelInfo.cs
2 using System.Security;
3 
5 {
7  [ComVisible(true)]
8  public interface IChannelInfo
9  {
13  object[] ChannelData
14  {
15  [SecurityCritical]
16  get;
17  [SecurityCritical]
18  set;
19  }
20  }
21 }
Definition: __Canon.cs:3
Provides custom channel information that is carried along with the T:System.Runtime....
Definition: IChannelInfo.cs:8
object [] ChannelData
Gets and sets the channel data for each channel.
Definition: IChannelInfo.cs:14