Files
2026-06-04 11:42:34 +02:00

20 lines
834 B
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Remoting.Messaging;
namespace System.Runtime.Remoting.Contexts
{
/// <summary>Contributes an object-specific interception sink on the server end of a remoting call.</summary>
// Token: 0x020003C6 RID: 966
[ComVisible(true)]
public interface IContributeObjectSink
{
/// <summary>Chains the message sink of the provided server object in front of the given sink chain.</summary>
/// <returns>The composite sink chain.</returns>
/// <param name="obj">The server object which provides the message sink that is to be chained in front of the given chain. </param>
/// <param name="nextSink">The chain of sinks composed so far. </param>
// Token: 0x06002632 RID: 9778
IMessageSink GetObjectSink(MarshalByRefObject obj, IMessageSink nextSink);
}
}