Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

27 lines
728 B
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Remoting.Messaging;
using Cpp2IlInjected;
namespace System.Runtime.Remoting
{
/// <summary>Provides envoy information.</summary>
// Token: 0x020004A4 RID: 1188
[Token(Token = "0x20004A4")]
[ComVisible(true)]
public interface IEnvoyInfo
{
/// <summary>Gets or sets the list of envoys that were contributed by the server context and object chains when the object was marshaled.</summary>
/// <returns>A chain of envoy sinks.</returns>
// Token: 0x17000558 RID: 1368
// (get) Token: 0x060026F2 RID: 9970
[Token(Token = "0x17000558")]
IMessageSink EnvoySinks
{
[Token(Token = "0x60026F2")]
[Address(Slot = "0")]
get;
}
}
}