Files
Apr2020-Cpp2Il-Dump/mscorlib/System/Runtime/Remoting/Contexts/IContributeClientContextSink.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

23 lines
849 B
C#

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 client end of a remoting call.</summary>
// Token: 0x020004D5 RID: 1237
[Token(Token = "0x20004D5")]
[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>
/// <param name="nextSink">The chain of sinks composed so far.</param>
/// <returns>The composite sink chain.</returns>
// Token: 0x0600284B RID: 10315
[Token(Token = "0x600284B")]
[Address(Slot = "0")]
IMessageSink GetClientContextSink(IMessageSink nextSink);
}
}