Explorar el Código

2002-08-03 Rodrigo Moya <[email protected]>

	* BinaryServerFormatterSinkProvider.cs:
	* BinaryClientFormatterSinkProvider.cs: new stubs.

svn path=/trunk/mcs/; revision=6415
Rodrigo Moya hace 23 años
padre
commit
3cd14aa403

+ 43 - 0
mcs/class/corlib/System.Runtime.Remoting.Channels/BinaryClientFormatterSinkProvider.cs

@@ -0,0 +1,43 @@
+//
+// System.Runtime.Remoting.Channels.BinaryClientFormatterSinkProvider.cs
+//
+// Author: Rodrigo Moya ([email protected])
+//
+// 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 ();
+		}		
+	}
+}

+ 53 - 0
mcs/class/corlib/System.Runtime.Remoting.Channels/BinaryServerFormatterSinkProvider.cs

@@ -0,0 +1,53 @@
+//
+// System.Runtime.Remoting.Channels.BinaryServerFormatterSinkProvider.cs
+//
+// Author: Rodrigo Moya ([email protected])
+//
+// 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 ();
+		}
+	}
+}

+ 5 - 0
mcs/class/corlib/System.Runtime.Remoting.Channels/ChangeLog

@@ -1,3 +1,8 @@
+2002-08-03  Rodrigo Moya <[email protected]>
+
+	* BinaryServerFormatterSinkProvider.cs:
+	* BinaryClientFormatterSinkProvider.cs: new stubs.
+
 2002-08-03  Duncan Mak  <[email protected]>
 
 	* BinaryClientFormatterSink.cs: