2003-07-17 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
authorAndreas N <andreas@mono-cvs.ximian.com>
Thu, 17 Jul 2003 18:55:46 +0000 (18:55 -0000)
committerAndreas N <andreas@mono-cvs.ximian.com>
Thu, 17 Jul 2003 18:55:46 +0000 (18:55 -0000)
* SessionInProcHandler.cs: Made these internal to fix signature and building CLS-compliant

svn path=/trunk/mcs/; revision=16354

mcs/class/System.Web/System.Web.SessionState/ChangeLog
mcs/class/System.Web/System.Web.SessionState/SessionInProcHandler.cs

index 1d29f3886e788ea3e208ed025e886b882eec87ad..75b7c655f199cd6d41a5fe6dcf9032daedac1fad 100644 (file)
@@ -1,3 +1,7 @@
+2003-07-17  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+       * SessionInProcHandler.cs: Made these internal to fix signature and building CLS-compliant
+
 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
 
        * SessionDictionary.cs: locking.
index 6e7d3ab8ad3a451bb0b676400793a3a696aef994..6b8bc8e35c91db4ff7bae1aa1610e16ad583da07 100644 (file)
@@ -21,7 +21,7 @@ using System.Collections;
 namespace System.Web.SessionState
 {
        // Container object, containing the current session state and when it was last accessed.
-       public class SessionContainer
+       internal class SessionContainer
        {
                private HttpSessionState _state;
                private long _last_access;
@@ -54,7 +54,7 @@ namespace System.Web.SessionState
        }
 
 
-       public class SessionInProcHandler : ISessionHandler
+       internal class SessionInProcHandler : ISessionHandler
        {
                protected Hashtable _sessionTable;
                const string COOKIE_NAME = "ASPSESSION"; // The name of the cookie.