2002-07-31 Rodrigo Moya <rodrigo@ximian.com>
authorRodrigo Moya <rodrigo@mono-cvs.ximian.com>
Wed, 31 Jul 2002 22:56:29 +0000 (22:56 -0000)
committerRodrigo Moya <rodrigo@mono-cvs.ximian.com>
Wed, 31 Jul 2002 22:56:29 +0000 (22:56 -0000)
* BaseChannelSinkWithProperties.cs:
* BaseChannelObjectWithProperties.cs: new stubs.

svn path=/trunk/mcs/; revision=6304

mcs/class/corlib/System.Runtime.Remoting.Channels/BaseChannelObjectWithProperties.cs
mcs/class/corlib/System.Runtime.Remoting.Channels/BaseChannelSinkWithProperties.cs [new file with mode: 0644]
mcs/class/corlib/System.Runtime.Remoting.Channels/ChangeLog

index ebfad29ba14e871a9ef0699b951a4847eb023531..1bc48f3c52de22e5269bd4f3bdceca84de6dc616 100644 (file)
@@ -8,7 +8,8 @@
 
 using System.Collections;
 
-namespace System.Runtime.Remoting.Channels {
+namespace System.Runtime.Remoting.Channels
+{
 
        public abstract class BaseChannelObjectWithProperties :
                IDictionary, ICollection, IEnumerable
diff --git a/mcs/class/corlib/System.Runtime.Remoting.Channels/BaseChannelSinkWithProperties.cs b/mcs/class/corlib/System.Runtime.Remoting.Channels/BaseChannelSinkWithProperties.cs
new file mode 100644 (file)
index 0000000..98bcbf0
--- /dev/null
@@ -0,0 +1,22 @@
+//
+// System.Runtime.Remoting.Channels.BaseChannelSyncWithProperties.cs
+//
+// Author: Rodrigo Moya (rodrigo@ximian.com)
+//
+// 2002 (C) Copyright, Ximian, Inc.
+//
+
+namespace System.Runtime.Remoting.Channels
+{
+       
+       public abstract class BaseChannelSinkWithProperties
+               : BaseChannelObjectWithProperties
+       {
+               
+               [MonoTODO]
+               protected BaseChannelSinkWithProperties ()
+               {
+                       throw new NotImplementedException ();
+               }
+       }
+}
index 2b69531bb1b0c17cffe96702e4c5abaa99326929..1444f5427a68b7a6bc2042dd1de5adea74b18346 100644 (file)
@@ -1,5 +1,6 @@
 2002-07-31  Rodrigo Moya <rodrigo@ximian.com>
 
+       * BaseChannelSinkWithProperties.cs:
        * BaseChannelObjectWithProperties.cs: new stubs.
 
 2002-08-01  Duncan Mak  <duncan@ximian.com>