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,22 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Remoting.Messaging;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Contexts
{
/// <summary>Contributes an interception sink at the context boundary on the server end of a remoting call.</summary>
// Token: 0x020004F5 RID: 1269
[Token(Token = "0x20004F5")]
[ComVisible(true)]
public interface IContributeServerContextSink
{
/// <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="nextSink">The chain of sinks composed so far.</param>
/// <returns>The composite sink chain.</returns>
// Token: 0x06002A5C RID: 10844
[Token(Token = "0x6002A5C")]
[Address(Slot = "0")]
IMessageSink GetServerContextSink(IMessageSink nextSink);
}
}