2002-08-10 Rodrigo Moya <rodrigo@ximian.com>
authorRodrigo Moya <rodrigo@mono-cvs.ximian.com>
Sun, 11 Aug 2002 18:00:17 +0000 (18:00 -0000)
committerRodrigo Moya <rodrigo@mono-cvs.ximian.com>
Sun, 11 Aug 2002 18:00:17 +0000 (18:00 -0000)
* CommonTransportKeys.cs:
* ServerChannelSinkStack.cs: new classes.

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

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

index 9ada39c777a0e560d1c8eed0089c16836e40b55b..a59beb59b55489fabd03b1c2d467bcbc53c43bf3 100644 (file)
@@ -1,3 +1,8 @@
+2002-08-10  Rodrigo Moya <rodrigo@ximian.com>
+
+       * CommonTransportKeys.cs:
+       * ServerChannelSinkStack.cs: new classes.
+
 2002-08-05  Rodrigo Moya <rodrigo@ximian.com>
 
        * ChannelServices.cs:
diff --git a/mcs/class/corlib/System.Runtime.Remoting.Channels/CommonTransportKeys.cs b/mcs/class/corlib/System.Runtime.Remoting.Channels/CommonTransportKeys.cs
new file mode 100644 (file)
index 0000000..efb6658
--- /dev/null
@@ -0,0 +1,21 @@
+//
+// System.Runtime.Remoting.Channels.CommonTransportKeys.cs
+//
+// Author: Rodrigo Moya (rodrigo@ximian.com)
+//
+// 2002 (C) Copyright, Ximian, Inc.
+//
+
+namespace System.Runtime.Remoting.Channels
+{
+       public class CommonTransportKeys
+       {
+               public const string ConnectionId = "";
+               public const string IPAddress = "";
+               public const string RequestUri = "";
+               
+               public CommonTransportKeys ()
+               {
+               }
+       }
+}
diff --git a/mcs/class/corlib/System.Runtime.Remoting.Channels/ServerChannelSinkStack.cs b/mcs/class/corlib/System.Runtime.Remoting.Channels/ServerChannelSinkStack.cs
new file mode 100644 (file)
index 0000000..877f2db
--- /dev/null
@@ -0,0 +1,64 @@
+//
+// System.Runtime.Remoting.Channels.ServerChannelSinkStack.cs
+//
+// Author: Rodrigo Moya (rodrigo@ximian.com)
+//
+// 2002 (C) Copyright, Ximian, Inc.
+//
+
+using System.IO;
+using System.Runtime.Remoting.Messaging;
+
+namespace System.Runtime.Remoting.Channels
+{
+       public class ServerChannelSinkStack : IServerChannelSinkStack,
+               IServerResponseChannelSinkStack
+       {
+               public ServerChannelSinkStack ()
+               {
+               }
+
+               [MonoTODO]
+               public Stream GetResponseStream (IMessage msg,
+                                                ITransportHeaders headers)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public object Pop (IServerChannelSink sink)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public void Push (IServerChannelSink sink, object state)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public void ServerCallback (IAsyncResult ar)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public void Store (IServerChannelSink sink, object state)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public void StoreAndDispatch (IServerChannelSink sink, object state)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public void AsyncProcessResponse (IMessage msg, ITransportHeaders headers, Stream stream)
+               {
+                       throw new NotImplementedException ();
+               }
+       }
+}