This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,26 @@
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;
}
}
}