This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 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: 0x020004BF RID: 1215
[Token(Token = "0x20004BF")]
[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: 0x170005CF RID: 1487
// (get) Token: 0x060028FE RID: 10494
[Token(Token = "0x170005CF")]
object[] ChannelData
{
[Token(Token = "0x60028FE")]
[Address(Slot = "0")]
get;
}
}
}