2002-08-03 Rodrigo Moya <rodrigo@ximian.com>
authorRodrigo Moya <rodrigo@mono-cvs.ximian.com>
Mon, 5 Aug 2002 12:48:28 +0000 (12:48 -0000)
committerRodrigo Moya <rodrigo@mono-cvs.ximian.com>
Mon, 5 Aug 2002 12:48:28 +0000 (12:48 -0000)
* BinaryServerFormatterSinkProvider.cs:
* BinaryClientFormatterSinkProvider.cs: new stubs.

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

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

diff --git a/mcs/class/corlib/System.Runtime.Remoting.Channels/BinaryClientFormatterSinkProvider.cs b/mcs/class/corlib/System.Runtime.Remoting.Channels/BinaryClientFormatterSinkProvider.cs
new file mode 100644 (file)
index 0000000..bc4a8a2
--- /dev/null
@@ -0,0 +1,43 @@
+//
+// System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider.cs
+//
+// Author: Rodrigo Moya (rodrigo@ximian.com)
+//
+// 2002 (C) Copyright, Ximian, Inc.
+//
+
+using System.Collections;
+
+namespace System.Runtime.Remoting.Channels
+{
+       public class BinaryClientFormatterSinkProvider :
+               IClientFormatterSinkProvider, IClientChannelSinkProvider
+       {
+               [MonoTODO]
+               public BinaryClientFormatterSinkProvider ()
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public BinaryClientFormatterSinkProvider (IDictionary properties,
+                                                         ICollection providerData)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               public IClientChannelSinkProvider Next
+               {
+                       get { throw new NotImplementedException (); }
+                       set { throw new NotImplementedException (); }
+               }
+
+               [MonoTODO]
+               public IClientChannelSink CreateSink (IChannelSender channel,
+                                                     string url,
+                                                     object remoteChannelData)
+               {
+                       throw new NotImplementedException ();
+               }               
+       }
+}
diff --git a/mcs/class/corlib/System.Runtime.Remoting.Channels/BinaryServerFormatterSinkProvider.cs b/mcs/class/corlib/System.Runtime.Remoting.Channels/BinaryServerFormatterSinkProvider.cs
new file mode 100644 (file)
index 0000000..a4c2c24
--- /dev/null
@@ -0,0 +1,53 @@
+//
+// System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider.cs
+//
+// Author: Rodrigo Moya (rodrigo@ximian.com)
+//
+// 2002 (C) Copyright, Ximian, Inc.
+//
+
+using System.Collections;
+
+namespace System.Runtime.Remoting.Channels
+{
+       public class BinaryServerFormatterSinkProvider :
+               IServerFormatterSinkProvider, IServerChannelSinkProvider
+       {
+               [MonoTODO]
+               public BinaryServerFormatterSinkProvider ()
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public BinaryServerFormatterSinkProvider (IDictionary properties,
+                                                         ICollection providerData)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               public IServerChannelSinkProvider Next
+               {
+                       [MonoTODO]
+                       get {
+                               throw new NotImplementedException ();
+                       }
+                       [MonoTODO]
+                       set {
+                               throw new NotImplementedException ();
+                       }
+               }
+
+               [MonoTODO]
+               public IServerChannelSink CreateSink (IChannelReceiver channel)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public void GetChannelData (IChannelDataStore channelData)
+               {
+                       throw new NotImplementedException ();
+               }
+       }
+}
index 5072fca1e858415dadf710b1367832bd1197fc7c..d4b39e217e3de05cd278a467290e0952e3d004ac 100644 (file)
@@ -1,3 +1,8 @@
+2002-08-03  Rodrigo Moya <rodrigo@ximian.com>
+
+       * BinaryServerFormatterSinkProvider.cs:
+       * BinaryClientFormatterSinkProvider.cs: new stubs.
+
 2002-08-03  Duncan Mak  <duncan@ximian.com>
 
        * BinaryClientFormatterSink.cs: