This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 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: 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;
}
}
}