The CallContext skeleton.
authorJaime Anguiano Olarra <jaime@mono-cvs.ximian.com>
Tue, 10 Dec 2002 18:58:33 +0000 (18:58 -0000)
committerJaime Anguiano Olarra <jaime@mono-cvs.ximian.com>
Tue, 10 Dec 2002 18:58:33 +0000 (18:58 -0000)
svn path=/trunk/mcs/; revision=9538

mcs/class/corlib/System.Runtime.Remoting.Messaging/CallContext.cs [new file with mode: 0644]
mcs/class/corlib/System.Runtime.Remoting.Messaging/ChangeLog

diff --git a/mcs/class/corlib/System.Runtime.Remoting.Messaging/CallContext.cs b/mcs/class/corlib/System.Runtime.Remoting.Messaging/CallContext.cs
new file mode 100644 (file)
index 0000000..b3b1dee
--- /dev/null
@@ -0,0 +1,53 @@
+// 
+// System.Runtime.Remoting.Messaging.CallContext.cs
+//
+// Author: Jaime Anguiano Olarra (jaime@gnome.org)
+//
+// (c) 2002, Jaime Anguiano Olarra
+//
+// FIXME: This is just a skeleton for practical purposes.
+///<summary>
+///Provides several properties that come with the execution code path.
+///This class is sealed.
+///</summary>
+
+using System;
+
+namespace System.Runtime.Remoting.Messaging 
+{
+       
+       [Serializable]
+       public sealed class CallContext 
+       {
+               // public methods
+               [MonoTODO]
+               public static void FreeNamedDataSlot (string name) 
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public static object GetData (string name) 
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public static Header[] GetHeaders () 
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public static void SetData (string name, object data) 
+               {
+                       throw new NotImplementedException ();
+               }
+
+               [MonoTODO]
+               public static void SetHeaders (Header[] headers) 
+               {
+                       throw new NotImplementedException ();
+               }
+       }
+}
index c160bc145310b1b5b0cc30e19bdb5c320f187285..947e81252ae7002acea2b763be14acab6b895fd6 100644 (file)
@@ -1,3 +1,7 @@
+2002-12-10  Jaime Anguiano Olarra <jaime@gnome.org>
+
+       * CallContext.c: Added to the CVS.
+
 2002-08-22  Nick Drochak  <ndrochak@gol.com>
 
        * RemotingSurrogateSelector.cs (SetRootObject): Function should return