using System; using System.Runtime.InteropServices; namespace System.Runtime.Remoting { /// Provides custom channel information that is carried along with the . // Token: 0x0200043C RID: 1084 [ComVisible(true)] public interface IChannelInfo { /// Gets and sets the channel data for each channel. /// The channel data for each channel. /// The immediate caller makes the call through a reference to the interface and does not have infrastructure permission. /// /// /// // Token: 0x17000846 RID: 2118 // (get) Token: 0x060029C5 RID: 10693 // (set) Token: 0x060029C6 RID: 10694 object[] ChannelData { get; set; } } }