Files
Dec2017-Script-Dump/mscorlib/System/Runtime/Remoting/Contexts/IContributeEnvoySink.cs
T
2026-06-04 11:42:34 +02:00

20 lines
796 B
C#

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