using System; using System.Runtime.InteropServices; using System.Runtime.Remoting.Messaging; using Cpp2IlInjected; namespace System.Runtime.Remoting.Contexts { /// Contributes an interception sink at the context boundary on the server end of a remoting call. // Token: 0x020004D9 RID: 1241 [Token(Token = "0x20004D9")] [ComVisible(true)] public interface IContributeServerContextSink { /// 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. /// The chain of sinks composed so far. /// The composite sink chain. // Token: 0x0600284F RID: 10319 [Token(Token = "0x600284F")] [Address(Slot = "0")] IMessageSink GetServerContextSink(IMessageSink nextSink); } }