23 lines
849 B
C#
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: 0x020004F1 RID: 1265
|
|
[Token(Token = "0x20004F1")]
|
|
[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: 0x06002A58 RID: 10840
|
|
[Token(Token = "0x6002A58")]
|
|
[Address(Slot = "0")]
|
|
IMessageSink GetClientContextSink(IMessageSink nextSink);
|
|
}
|
|
}
|