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,34 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Channels
{
/// <summary>Provides required functions and properties for the receiver channels.</summary>
// Token: 0x020004E5 RID: 1253
[Token(Token = "0x20004E5")]
[ComVisible(true)]
public interface IChannelReceiver : IChannel
{
/// <summary>Gets the channel-specific data.</summary>
/// <returns>The channel data.</returns>
/// <exception cref="T:System.Security.SecurityException">The immediate caller does not have infrastructure permission.</exception>
// Token: 0x170005A0 RID: 1440
// (get) Token: 0x0600287C RID: 10364
[Token(Token = "0x170005A0")]
object ChannelData
{
[Token(Token = "0x600287C")]
[Address(Slot = "0")]
get;
}
/// <summary>Instructs the current channel to start listening for requests.</summary>
/// <param name="data">Optional initialization information.</param>
/// <exception cref="T:System.Security.SecurityException">The immediate caller does not have infrastructure permission.</exception>
// Token: 0x0600287D RID: 10365
[Token(Token = "0x600287D")]
[Address(Slot = "1")]
void StartListening(object data);
}
}