using System;
using System.Runtime.InteropServices;
using System.Runtime.Remoting.Messaging;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Contexts
{
/// Contributes an object-specific interception sink on the server end of a remoting call.
// Token: 0x020004F4 RID: 1268
[Token(Token = "0x20004F4")]
[ComVisible(true)]
public interface IContributeObjectSink
{
/// Chains the message sink of the provided server object in front of the given sink chain.
/// The server object which provides the message sink that is to be chained in front of the given chain.
/// The chain of sinks composed so far.
/// The composite sink chain.
// Token: 0x06002A5B RID: 10843
[Token(Token = "0x6002A5B")]
[Address(Slot = "0")]
IMessageSink GetObjectSink(MarshalByRefObject obj, IMessageSink nextSink);
}
}