| 12345678910111213141516171819202122 |
- //
- // System.Runtime.Remoting.Channels.BaseChannelSyncWithProperties.cs
- //
- // Author: Rodrigo Moya ([email protected])
- //
- // 2002 (C) Copyright, Ximian, Inc.
- //
- namespace System.Runtime.Remoting.Channels
- {
-
- public abstract class BaseChannelSinkWithProperties
- : BaseChannelObjectWithProperties
- {
-
- protected BaseChannelSinkWithProperties ()
- : base ()
- {
-
- }
- }
- }
|