27 lines
899 B
C#
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: 0x02000503 RID: 1283
|
|
[Token(Token = "0x2000503")]
|
|
[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: 0x17000619 RID: 1561
|
|
// (set) Token: 0x06002A8C RID: 10892
|
|
[Token(Token = "0x17000619")]
|
|
IClientChannelSinkProvider Next
|
|
{
|
|
[Token(Token = "0x6002A8C")]
|
|
[Address(Slot = "0")]
|
|
set;
|
|
}
|
|
}
|
|
}
|