BaseChannelSinkWithProperties.cs 386 B

12345678910111213141516171819202122
  1. //
  2. // System.Runtime.Remoting.Channels.BaseChannelSyncWithProperties.cs
  3. //
  4. // Author: Rodrigo Moya ([email protected])
  5. //
  6. // 2002 (C) Copyright, Ximian, Inc.
  7. //
  8. namespace System.Runtime.Remoting.Channels
  9. {
  10. public abstract class BaseChannelSinkWithProperties
  11. : BaseChannelObjectWithProperties
  12. {
  13. protected BaseChannelSinkWithProperties ()
  14. : base ()
  15. {
  16. }
  17. }
  18. }