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


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

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

Modified Files:
        Context.cs ContextProperty.cs SynchronizationAttribute.cs 
Log Message:


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


Index: Context.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Contexts/Context.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** Context.cs  17 Apr 2003 10:36:09 -0000      1.1
--- Context.cs  23 Apr 2003 05:39:49 -0000      1.2
***************
*** 54,58 ****
        // Allocate a named local data slot.
        [TODO]
!       public static LocalDataStoreSlot AllocNamedDataSlot(String name)
                        {
                                // TODO
--- 54,58 ----
        // Allocate a named local data slot.
        [TODO]
!       public static LocalDataStoreSlot AllocateNamedDataSlot(String name)
                        {
                                // TODO
***************
*** 76,80 ****
        // Freeze this context.
        [TODO]
!       public void Freeze()
                        {
                                // TODO
--- 76,80 ----
        // Freeze this context.
        [TODO]
!       public virtual void Freeze()
                        {
                                // TODO
***************
*** 146,150 ****
  
        // Get the identifier for this context.
!       public int ContextID
                        {
                                get
--- 146,150 ----
  
        // Get the identifier for this context.
!       public virtual int ContextID
                        {
                                get
***************
*** 155,159 ****
  
        // Get the properties on this context.
!       public IContextProperty[] ContextProperties
                        {
                                get
--- 155,159 ----
  
        // Get the properties on this context.
!       public virtual IContextProperty[] ContextProperties
                        {
                                get

Index: ContextProperty.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Contexts/ContextProperty.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** ContextProperty.cs  17 Apr 2003 10:36:09 -0000      1.1
--- ContextProperty.cs  23 Apr 2003 05:39:49 -0000      1.2
***************
*** 39,43 ****
  
        // Get the name or value from this property.
!       public String Name
                        {
                                get
--- 39,43 ----
  
        // Get the name or value from this property.
!       public virtual String Name
                        {
                                get
***************
*** 46,50 ****
                                }
                        }
!       public Object Value
                        {
                                get
--- 46,50 ----
                                }
                        }
!       public virtual Object Property
                        {
                                get

Index: SynchronizationAttribute.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/runtime/System/Runtime/Remoting/Contexts/SynchronizationAttribute.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** SynchronizationAttribute.cs 17 Apr 2003 10:36:09 -0000      1.1
--- SynchronizationAttribute.cs 23 Apr 2003 05:39:49 -0000      1.2
***************
*** 30,34 ****
  [Serializable]
  [AttributeUsage(AttributeTargets.Class)]
! public class SynchronizationAttribute : ContextAttribute
  {
        // Internal state.
--- 30,36 ----
  [Serializable]
  [AttributeUsage(AttributeTargets.Class)]
! public class SynchronizationAttribute
!       : ContextAttribute, IContributeServerContextSink,
!         IContributeClientContextSink
  {
        // Internal state.
***************
*** 97,100 ****
--- 99,110 ----
                        {
                                // TODO
+                       }
+ 
+       // Get the server context sink.
+       [TODO]
+       public virtual IMessageSink GetServerContextSink(IMessageSink nextSink)
+                       {
+                               // TODO
+                               return null;
                        }
  





reply via email to

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