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,23 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Remoting.Messaging;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Contexts
{
/// <summary>Contributes an envoy message sink on the client end.</summary>
// Token: 0x020004D7 RID: 1239
[Token(Token = "0x20004D7")]
[ComVisible(true)]
public interface IContributeEnvoySink
{
/// <summary>Takes the first sink in the chain of sinks composed so far, and then chains its message sink in front of the chain already formed.</summary>
/// <param name="obj">The server object for which the chain is being created.</param>
/// <param name="nextSink">The chain of sinks composed so far.</param>
/// <returns>The composite sink chain.</returns>
// Token: 0x0600284D RID: 10317
[Token(Token = "0x600284D")]
[Address(Slot = "0")]
IMessageSink GetEnvoySink(MarshalByRefObject obj, IMessageSink nextSink);
}
}