This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,26 @@
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;
}
}
}