This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
@@ -0,0 +1,39 @@
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;
}
}
}