Files
27Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/Remoting/IEnvoyInfo.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

27 lines
729 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: 0x020004C0 RID: 1216
[Token(Token = "0x20004C0")]
[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: 0x170005D0 RID: 1488
// (get) Token: 0x060028FF RID: 10495
[Token(Token = "0x170005D0")]
IMessageSink EnvoySinks
{
[Token(Token = "0x60028FF")]
[Address(Slot = "0")]
get;
}
}
}