35 lines
1.2 KiB
C#
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: 0x02000501 RID: 1281
|
|
[Token(Token = "0x2000501")]
|
|
[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: 0x17000618 RID: 1560
|
|
// (get) Token: 0x06002A89 RID: 10889
|
|
[Token(Token = "0x17000618")]
|
|
object ChannelData
|
|
{
|
|
[Token(Token = "0x6002A89")]
|
|
[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: 0x06002A8A RID: 10890
|
|
[Token(Token = "0x6002A8A")]
|
|
[Address(Slot = "1")]
|
|
void StartListening(object data);
|
|
}
|
|
}
|