ChannelSinkStackEntry.cs 570 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // System.Runtime.Remoting.ChanelSinkStackEntry.cs
  3. //
  4. // Author: Lluis Sanchez Gual ([email protected])
  5. //
  6. // (C) 2002, Lluis Sanchez Gual
  7. //
  8. using System;
  9. namespace System.Runtime.Remoting.Channels
  10. {
  11. /// <summary>
  12. /// Used to store sink information in a SinkStack
  13. /// </summary>
  14. internal class ChanelSinkStackEntry
  15. {
  16. public IChannelSinkBase Sink;
  17. public object State;
  18. public ChanelSinkStackEntry Next;
  19. public ChanelSinkStackEntry(IChannelSinkBase sink, object state, ChanelSinkStackEntry next)
  20. {
  21. Sink = sink;
  22. State = state;
  23. Next = next;
  24. }
  25. }
  26. }