Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

24 lines
941 B
C#

using System;
using System.Runtime.InteropServices;
using System.Runtime.Remoting.Messaging;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Contexts
{
/// <summary>Contributes an object-specific interception sink on the server end of a remoting call.</summary>
// Token: 0x020004F4 RID: 1268
[Token(Token = "0x20004F4")]
[ComVisible(true)]
public interface IContributeObjectSink
{
/// <summary>Chains the message sink of the provided server object in front of the given sink chain.</summary>
/// <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>
/// <returns>The composite sink chain.</returns>
// Token: 0x06002A5B RID: 10843
[Token(Token = "0x6002A5B")]
[Address(Slot = "0")]
IMessageSink GetObjectSink(MarshalByRefObject obj, IMessageSink nextSink);
}
}