40 lines
1.2 KiB
C#
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: 0x020004FF RID: 1279
|
|
[Token(Token = "0x20004FF")]
|
|
[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: 0x17000616 RID: 1558
|
|
// (get) Token: 0x06002A87 RID: 10887
|
|
[Token(Token = "0x17000616")]
|
|
string ChannelName
|
|
{
|
|
[Token(Token = "0x6002A87")]
|
|
[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: 0x17000617 RID: 1559
|
|
// (get) Token: 0x06002A88 RID: 10888
|
|
[Token(Token = "0x17000617")]
|
|
int ChannelPriority
|
|
{
|
|
[Token(Token = "0x6002A88")]
|
|
[Address(Slot = "1")]
|
|
get;
|
|
}
|
|
}
|
|
}
|