using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Runtime.Remoting.Channels { /// Provides conduits for messages that cross remoting boundaries. // Token: 0x020004FF RID: 1279 [Token(Token = "0x20004FF")] [ComVisible(true)] public interface IChannel { /// Gets the name of the channel. /// The name of the channel. /// The immediate caller does not have infrastructure permission. // Token: 0x17000616 RID: 1558 // (get) Token: 0x06002A87 RID: 10887 [Token(Token = "0x17000616")] string ChannelName { [Token(Token = "0x6002A87")] [Address(Slot = "0")] get; } /// Gets the priority of the channel. /// An integer that indicates the priority of the channel. /// The immediate caller does not have infrastructure permission. // Token: 0x17000617 RID: 1559 // (get) Token: 0x06002A88 RID: 10888 [Token(Token = "0x17000617")] int ChannelPriority { [Token(Token = "0x6002A88")] [Address(Slot = "1")] get; } } }