using System;
using System.Runtime.InteropServices;
using System.Runtime.Remoting.Messaging;
namespace System.Runtime.Remoting.Contexts
{
/// Contributes an envoy message sink on the client end.
// Token: 0x020003C5 RID: 965
[ComVisible(true)]
public interface IContributeEnvoySink
{
/// 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 server object for which the chain is being created.
/// The chain of sinks composed so far.
// Token: 0x06002631 RID: 9777
IMessageSink GetEnvoySink(MarshalByRefObject obj, IMessageSink nextSink);
}
}