BaseChannelWithProperties.cs 595 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // System.Runtime.Remoting.Channels.BaseChannelWithProperties.cs
  3. //
  4. // Author: Rodrigo Moya ([email protected])
  5. //
  6. // 2002 (C) Copyright, Ximian, Inc.
  7. //
  8. using System.Collections;
  9. namespace System.Runtime.Remoting.Channels
  10. {
  11. public abstract class BaseChannelWithProperties :
  12. BaseChannelObjectWithProperties
  13. {
  14. protected IChannelSinkBase SinksWithProperties;
  15. [MonoTODO]
  16. protected BaseChannelWithProperties ()
  17. {
  18. throw new NotImplementedException ();
  19. }
  20. public override IDictionary Properties
  21. {
  22. [MonoTODO]
  23. get { throw new NotImplementedException (); }
  24. }
  25. }
  26. }