using System;
using System.Runtime.InteropServices;
using System.Runtime.Remoting.Messaging;
namespace System.Runtime.Remoting.Contexts
{
/// Contributes an interception sink at the context boundary on the client end of a remoting call.
// Token: 0x020003C3 RID: 963
[ComVisible(true)]
public interface IContributeClientContextSink
{
/// 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 composite sink chain.
/// The chain of sinks composed so far.
// Token: 0x0600262F RID: 9775
IMessageSink GetClientContextSink(IMessageSink nextSink);
}
}