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; } }