dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Runtime/Remoting IObje


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Runtime/Remoting IObjectHandle.cs,1.1,1.2 InternalRemotingServices.cs,1.1,1.2 ObjRef.cs,1.3,1.4 ObjectHandle.cs,1.4,1.5 RemotingConfiguration.cs,1.1,1.2 RemotingServices.cs,1.1,1.2 SoapServices.cs,1.1,1.2
Date: Wed, 23 Apr 2003 01:39:52 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting
In directory subversions:/tmp/cvs-serv9550/runtime/System/Runtime/Remoting

Modified Files:
        IObjectHandle.cs InternalRemotingServices.cs ObjRef.cs 
        ObjectHandle.cs RemotingConfiguration.cs RemotingServices.cs 
        SoapServices.cs 
Log Message:


Minor tweaks to a lot of classes to make them more signature compatible
with .NET Framework SDK 1.1.


Index: IObjectHandle.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/IObjectHandle.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** IObjectHandle.cs    17 Apr 2003 10:36:08 -0000      1.1
--- IObjectHandle.cs    23 Apr 2003 05:39:49 -0000      1.2
***************
*** 25,28 ****
--- 25,32 ----
  #if CONFIG_REMOTING
  
+ using System.Runtime.InteropServices;
+ 
+ [Guid("C460E2B4-E199-412a-8456-84DC3E4838C3")]
+ [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  public interface IObjectHandle
  {

Index: InternalRemotingServices.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/InternalRemotingServices.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** InternalRemotingServices.cs 19 Apr 2003 07:15:38 -0000      1.1
--- InternalRemotingServices.cs 23 Apr 2003 05:39:49 -0000      1.2
***************
*** 40,43 ****
--- 40,44 ----
  
        // Set the server identity on a method call object.
+       [CLSCompliant(false)]
        public static void SetServerIdentity(MethodCall m, Object srvID)
                        {

Index: ObjRef.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/ObjRef.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** ObjRef.cs   17 Apr 2003 10:36:08 -0000      1.3
--- ObjRef.cs   23 Apr 2003 05:39:49 -0000      1.4
***************
*** 90,93 ****
--- 90,104 ----
                                }
                        }
+       public virtual IEnvoyInfo EnvoyInfo
+                       {
+                               get
+                               {
+                                       return envoyInfo;
+                               }
+                               set
+                               {
+                                       envoyInfo = value;
+                               }
+                       }
        public virtual IRemotingTypeInfo TypeInfo
                        {

Index: ObjectHandle.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/ObjectHandle.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** ObjectHandle.cs     17 Apr 2003 10:36:08 -0000      1.4
--- ObjectHandle.cs     23 Apr 2003 05:39:49 -0000      1.5
***************
*** 25,28 ****
--- 25,31 ----
  #if CONFIG_REMOTING
  
+ using System.Runtime.InteropServices;
+ 
+ [ClassInterface(ClassInterfaceType.AutoDual)]
  public class ObjectHandle : MarshalByRefObject, IObjectHandle
  {

Index: RemotingConfiguration.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/RemotingConfiguration.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** RemotingConfiguration.cs    17 Apr 2003 10:36:08 -0000      1.1
--- RemotingConfiguration.cs    23 Apr 2003 05:39:49 -0000      1.2
***************
*** 78,81 ****
--- 78,89 ----
                        }
  
+       // Determine if custom errors are enabled.
+       [TODO]
+       public static bool CustomErrorsEnabled(bool isLocalRequest)
+                       {
+                               // TODO
+                               return false;
+                       }
+ 
        // Get a list of client types that can be activated remotely.
        [TODO]

Index: RemotingServices.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/RemotingServices.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** RemotingServices.cs 17 Apr 2003 10:36:08 -0000      1.1
--- RemotingServices.cs 23 Apr 2003 05:39:49 -0000      1.2
***************
*** 177,180 ****
--- 177,187 ----
                        }
  
+       // Set the log remoting stage.
+       [TODO]
+       public static void LogRemotingStage(int stage)
+                       {
+                               // TODO
+                       }
+ 
        // Marshal an object.
        public static ObjRef Marshal(MarshalByRefObject Obj)

Index: SoapServices.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/SoapServices.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** SoapServices.cs     17 Apr 2003 10:36:08 -0000      1.1
--- SoapServices.cs     23 Apr 2003 05:39:49 -0000      1.2
***************
*** 128,132 ****
        // Get type and method information from a SOAP action.
        [TODO]
!       public static bool GetTypeAndMethodNameFromSoapAcion
                                (String soapAction, out String typeName, out 
String methodName)
                        {
--- 128,132 ----
        // Get type and method information from a SOAP action.
        [TODO]
!       public static bool GetTypeAndMethodNameFromSoapAction
                                (String soapAction, out String typeName, out 
String methodName)
                        {





reply via email to

[Prev in Thread] Current Thread [Next in Thread]