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,26 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting
{
/// <summary>Provides custom channel information that is carried along with the <see cref="T:System.Runtime.Remoting.ObjRef" />.</summary>
// Token: 0x020004A3 RID: 1187
[Token(Token = "0x20004A3")]
[ComVisible(true)]
public interface IChannelInfo
{
/// <summary>Gets or sets the channel data for each channel.</summary>
/// <returns>The channel data for each channel.</returns>
/// <exception cref="T:System.Security.SecurityException">The immediate caller makes the call through a reference to the interface and does not have infrastructure permission.</exception>
// Token: 0x17000557 RID: 1367
// (get) Token: 0x060026F1 RID: 9969
[Token(Token = "0x17000557")]
object[] ChannelData
{
[Token(Token = "0x60026F1")]
[Address(Slot = "0")]
get;
}
}
}