Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/Remoting/Channels/IChannel.cs
T
2026-04-10 22:50:51 +02:00

40 lines
1.2 KiB
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Channels
{
/// <summary>Provides conduits for messages that cross remoting boundaries.</summary>
// Token: 0x020004E3 RID: 1251
[Token(Token = "0x20004E3")]
[ComVisible(true)]
public interface IChannel
{
/// <summary>Gets the name of the channel.</summary>
/// <returns>The name of the channel.</returns>
/// <exception cref="T:System.Security.SecurityException">The immediate caller does not have infrastructure permission.</exception>
// Token: 0x1700059E RID: 1438
// (get) Token: 0x0600287A RID: 10362
[Token(Token = "0x1700059E")]
string ChannelName
{
[Token(Token = "0x600287A")]
[Address(Slot = "0")]
get;
}
/// <summary>Gets the priority of the channel.</summary>
/// <returns>An integer that indicates the priority of the channel.</returns>
/// <exception cref="T:System.Security.SecurityException">The immediate caller does not have infrastructure permission.</exception>
// Token: 0x1700059F RID: 1439
// (get) Token: 0x0600287B RID: 10363
[Token(Token = "0x1700059F")]
int ChannelPriority
{
[Token(Token = "0x600287B")]
[Address(Slot = "1")]
get;
}
}
}