* EnterpriseServicesHelper.cs: Added to CVS.
authorLluis Sanchez <lluis@novell.com>
Wed, 26 Nov 2003 15:55:37 +0000 (15:55 -0000)
committerLluis Sanchez <lluis@novell.com>
Wed, 26 Nov 2003 15:55:37 +0000 (15:55 -0000)
svn path=/trunk/mcs/; revision=20479

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

index 36146b5968135b15b1c74cb6aef61c1374481767..7a246a9108751fa994ab1d9781e9196f3c981f17 100644 (file)
@@ -1,3 +1,7 @@
+2003-11-26  Lluis Sanchez Gual  <lluis@ximian.com>
+
+       * EnterpriseServicesHelper.cs: Added to CVS.
+
 2003-02-03 Patrik Torstensson
        
        * TrackingServices.cs: Implemented
diff --git a/mcs/class/corlib/System.Runtime.Remoting.Services/EnterpriseServicesHelper.cs b/mcs/class/corlib/System.Runtime.Remoting.Services/EnterpriseServicesHelper.cs
new file mode 100644 (file)
index 0000000..81fca12
--- /dev/null
@@ -0,0 +1,39 @@
+//
+// System.Runtime.Remoting.Services.EnterpriseServicesHelper.cs
+//
+// Author: Lluis Sanchez Gual (lluis@ximian.com)
+//
+// 2003 (C) Copyright, Novell, Inc.
+//
+
+using System.Runtime.Remoting;
+using System.Runtime.Remoting.Messaging;
+using System.Runtime.Remoting.Activation;
+using System.Runtime.Remoting.Proxies;
+
+namespace System.Runtime.Remoting.Services 
+{
+       public sealed class EnterpriseServicesHelper
+       {
+               public EnterpriseServicesHelper ()
+               {
+               }
+               
+               public static IConstructionReturnMessage CreateConstructionReturnMessage (IConstructionCallMessage ctorMsg, MarshalByRefObject retObj)
+               {
+                       return new ConstructionResponse (retObj, null, ctorMsg);
+               }
+
+               [MonoTODO]
+               public static void SwitchWrappers (RealProxy oldcp, RealProxy newcp)
+               {
+                       throw new NotSupportedException ();
+               }
+               
+               [MonoTODO]
+               public static object WrapIUnknownWithComObject (IntPtr punk)
+               {
+                       throw new NotSupportedException ();
+               }
+       }
+}