Files
Apr2020-Cpp2Il-Dump/mscorlib/System/Runtime/Remoting/Channels/IChannelReceiver.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

35 lines
1.2 KiB
C#

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);
}
}