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 server channel sinks for the server channel through which remoting messages flow.</summary>
|
|
// Token: 0x020004E9 RID: 1257
|
|
[Token(Token = "0x20004E9")]
|
|
[ComVisible(true)]
|
|
public interface IServerChannelSinkProvider
|
|
{
|
|
/// <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: 0x170005A3 RID: 1443
|
|
// (set) Token: 0x06002881 RID: 10369
|
|
[Token(Token = "0x170005A3")]
|
|
IServerChannelSinkProvider Next
|
|
{
|
|
[Token(Token = "0x6002881")]
|
|
[Address(Slot = "0")]
|
|
set;
|
|
}
|
|
}
|
|
}
|