Files
2026-04-10 22:50:51 +02:00

27 lines
899 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Channels
{
/// <summary>Creates client channel sinks for the client channel through which remoting messages flow.</summary>
// Token: 0x020004E7 RID: 1255
[Token(Token = "0x20004E7")]
[ComVisible(true)]
public interface IClientChannelSinkProvider
{
/// <summary>Gets or sets the next sink provider in the channel sink provider chain.</summary>
/// <returns>The next sink provider in the channel sink provider chain.</returns>
/// <exception cref="T:System.Security.SecurityException">The immediate caller does not have infrastructure permission.</exception>
// Token: 0x170005A1 RID: 1441
// (set) Token: 0x0600287F RID: 10367
[Token(Token = "0x170005A1")]
IClientChannelSinkProvider Next
{
[Token(Token = "0x600287F")]
[Address(Slot = "0")]
set;
}
}
}