This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,18 @@
using System;
using System.Runtime.InteropServices;
using System.Runtime.Remoting.Messaging;
namespace System.Runtime.Remoting.Contexts
{
/// <summary>Contributes an interception sink at the context boundary on the client end of a remoting call.</summary>
// Token: 0x020003C3 RID: 963
[ComVisible(true)]
public interface IContributeClientContextSink
{
/// <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>
/// <returns>The composite sink chain.</returns>
/// <param name="nextSink">The chain of sinks composed so far. </param>
// Token: 0x0600262F RID: 9775
IMessageSink GetClientContextSink(IMessageSink nextSink);
}
}