19 lines
741 B
C#
19 lines
741 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Remoting.Messaging;
|
|
|
|
namespace System.Runtime.Remoting.Contexts
|
|
{
|
|
/// <summary>Contributes an interception sink at the context boundary on the server end of a remoting call.</summary>
|
|
// Token: 0x020003C7 RID: 967
|
|
[ComVisible(true)]
|
|
public interface IContributeServerContextSink
|
|
{
|
|
/// <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>
|
|
/// <returns>The composite sink chain.</returns>
|
|
/// <param name="nextSink">The chain of sinks composed so far. </param>
|
|
// Token: 0x06002633 RID: 9779
|
|
IMessageSink GetServerContextSink(IMessageSink nextSink);
|
|
}
|
|
}
|