This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,25 @@
using System;
namespace System.Runtime.Remoting.Channels
{
// Token: 0x02000397 RID: 919
internal class ChanelSinkStackEntry
{
// Token: 0x06002576 RID: 9590 RVA: 0x0007C724 File Offset: 0x0007A924
public ChanelSinkStackEntry(IChannelSinkBase sink, object state, ChanelSinkStackEntry next)
{
this.Sink = sink;
this.State = state;
this.Next = next;
}
// Token: 0x04000EB0 RID: 3760
public IChannelSinkBase Sink;
// Token: 0x04000EB1 RID: 3761
public object State;
// Token: 0x04000EB2 RID: 3762
public ChanelSinkStackEntry Next;
}
}