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/Proxi


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/runtime/System/Runtime/Remoting/Proxies ProxyAttribute.cs,1.1,1.2 RealProxy.cs,1.1,1.2
Date: Wed, 23 Apr 2003 01:39:53 -0400

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

Modified Files:
        ProxyAttribute.cs RealProxy.cs 
Log Message:


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


Index: ProxyAttribute.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Proxies/ProxyAttribute.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ProxyAttribute.cs   17 Apr 2003 10:36:10 -0000      1.1
--- ProxyAttribute.cs   23 Apr 2003 05:39:50 -0000      1.2
***************
*** 25,32 ****
  #if CONFIG_REMOTING
  
  using System.Runtime.Remoting.Contexts;
  
! [AttributeUsage(AttributeTargets.Class)]
! public class ProxyAttribute : Attribute
  {
        // Constructor.
--- 25,33 ----
  #if CONFIG_REMOTING
  
+ using System.Runtime.Remoting.Activation;
  using System.Runtime.Remoting.Contexts;
  
! [AttributeUsage(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]
! public class ProxyAttribute : Attribute, IContextAttribute
  {
        // Constructor.
***************
*** 49,52 ****
--- 50,68 ----
                                // TODO
                                return null;
+                       }
+ 
+       // Get the properties for a new construction context.
+       [TODO]
+       public void GetPropertiesForNewContext(IConstructionCallMessage ctorMsg)
+                       {
+                               // TODO
+                       }
+ 
+       // Determine if a context is OK with respect to this attribute.
+       [TODO]
+       public bool IsContextOK(Context ctx, IConstructionCallMessage msg)
+                       {
+                               // TODO
+                               return false;
                        }
  

Index: RealProxy.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Proxies/RealProxy.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** RealProxy.cs        17 Apr 2003 10:36:10 -0000      1.1
--- RealProxy.cs        23 Apr 2003 05:39:50 -0000      1.2
***************
*** 77,81 ****
  
        // Get the type being proxied by this instance.
!       public virtual Type GetProxyType()
                        {
                                return type;
--- 77,81 ----
  
        // Get the type being proxied by this instance.
!       public virtual Type GetProxiedType()
                        {
                                return type;





reply via email to

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