Author: kostat
Date: 2007-05-30 08:31:50 -0400 (Wed, 30 May 2007)
New Revision: 78198

Modified:
   trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Hosting/BaseHttpServlet.cs
   trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Hosting/BaseStaticHttpServlet.cs
   trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Hosting/IncludeHelperServlet.cs
   
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Profile/CloudscapeProfileProvider.cs
   trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Profile/DerbyProfileProvider.cs
   
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/CloudscapeMembershipProvider.cs
   trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/CloudscapeRoleProvider.cs
   trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/DerbyMembershipProvider.cs
   
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/ServletAuthenticationModule.cs
   trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ObjectInputStream.cs
   
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ServletSessionIDManager.cs
   
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ServletSessionStateItemCollection.cs
   
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ServletSessionStateStoreProvider.cs
   trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/SessionListener.cs
Log:
providing basic documentation

Modified: trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Hosting/BaseHttpServlet.cs
===================================================================
--- trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Hosting/BaseHttpServlet.cs        
2007-05-30 12:11:26 UTC (rev 78197)
+++ trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Hosting/BaseHttpServlet.cs        
2007-05-30 12:31:50 UTC (rev 78198)
@@ -43,6 +43,9 @@
 
 namespace Mainsoft.Web.Hosting
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public class BaseHttpServlet : HttpServlet
        {
                //private AppDomain _servletDomain;
@@ -296,7 +299,7 @@
                }
        }
 
-       public class GHWebDeseserializer : [EMAIL PROTECTED] 
+       class GHWebDeseserializer : [EMAIL PROTECTED] 
        {
 
                        Object [EMAIL PROTECTED](java.io.ObjectInputStream 
stream)
@@ -309,6 +312,9 @@
 
 namespace System.Web.GH
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public class BaseHttpServlet : Mainsoft.Web.Hosting.BaseHttpServlet
        {
        }
@@ -317,6 +323,9 @@
 
 namespace System.Web.J2EE
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public class BaseHttpServlet : Mainsoft.Web.Hosting.BaseHttpServlet
        {
        }

Modified: 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Hosting/BaseStaticHttpServlet.cs
===================================================================
--- trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Hosting/BaseStaticHttpServlet.cs  
2007-05-30 12:11:26 UTC (rev 78197)
+++ trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Hosting/BaseStaticHttpServlet.cs  
2007-05-30 12:31:50 UTC (rev 78198)
@@ -35,6 +35,9 @@
 
 namespace Mainsoft.Web.Hosting
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public class BaseStaticHttpServlet : HttpServlet
        {
                public BaseStaticHttpServlet()
@@ -159,6 +162,9 @@
 
 namespace System.Web.J2EE
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public class BaseStaticHttpServlet : 
Mainsoft.Web.Hosting.BaseStaticHttpServlet
        {
        }
@@ -168,6 +174,9 @@
 
 namespace System.Web.GH
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public class BaseStaticHttpServlet : 
Mainsoft.Web.Hosting.BaseStaticHttpServlet
        {
        }

Modified: 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Hosting/IncludeHelperServlet.cs
===================================================================
--- trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Hosting/IncludeHelperServlet.cs   
2007-05-30 12:11:26 UTC (rev 78197)
+++ trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Hosting/IncludeHelperServlet.cs   
2007-05-30 12:31:50 UTC (rev 78198)
@@ -38,6 +38,9 @@
 
 namespace Mainsoft.Web.Hosting
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public class IncludeHelperServlet : HttpServlet
        {
                public IncludeHelperServlet()
@@ -78,7 +81,7 @@
                        PrintWriter jwriter;
                }
 
-               public class JavaWriterFromTextWriter : Writer
+               class JavaWriterFromTextWriter : Writer
                {
                        public JavaWriterFromTextWriter(TextWriter writer)
                        {
@@ -120,6 +123,9 @@
 
 namespace System.Web.GH
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public class IncludeHelperServlet : 
Mainsoft.Web.Hosting.IncludeHelperServlet
        {
        }

Modified: 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Profile/CloudscapeProfileProvider.cs
===================================================================
--- 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Profile/CloudscapeProfileProvider.cs  
    2007-05-30 12:11:26 UTC (rev 78197)
+++ 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Profile/CloudscapeProfileProvider.cs  
    2007-05-30 12:31:50 UTC (rev 78198)
@@ -32,6 +32,10 @@
 
 namespace Mainsoft.Web.Profile
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
+       [Obsolete]
        public class CloudscapeProfileProvider : DerbyProfileProvider
        {
                public override void Initialize (string name, 
NameValueCollection config)

Modified: 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Profile/DerbyProfileProvider.cs
===================================================================
--- trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Profile/DerbyProfileProvider.cs   
2007-05-30 12:11:26 UTC (rev 78197)
+++ trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Profile/DerbyProfileProvider.cs   
2007-05-30 12:31:50 UTC (rev 78198)
@@ -45,6 +45,9 @@
 
 namespace Mainsoft.Web.Profile
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public class DerbyProfileProvider : ProfileProvider
        {
                ConnectionStringSettings _connectionString;

Modified: 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/CloudscapeMembershipProvider.cs
===================================================================
--- 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/CloudscapeMembershipProvider.cs
  2007-05-30 12:11:26 UTC (rev 78197)
+++ 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/CloudscapeMembershipProvider.cs
  2007-05-30 12:31:50 UTC (rev 78198)
@@ -32,6 +32,10 @@
 
 namespace Mainsoft.Web.Security
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
+       [Obsolete]
        public class CloudscapeMembershipProvider : DerbyMembershipProvider
        {
                public override void Initialize (string name, 
NameValueCollection config)

Modified: 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/CloudscapeRoleProvider.cs
===================================================================
--- 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/CloudscapeRoleProvider.cs    
    2007-05-30 12:11:26 UTC (rev 78197)
+++ 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/CloudscapeRoleProvider.cs    
    2007-05-30 12:31:50 UTC (rev 78198)
@@ -32,6 +32,10 @@
 
 namespace Mainsoft.Web.Security
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
+       [Obsolete]
        public class CloudscapeRoleProvider : DerbyRoleProvider
        {
                public override void Initialize (string name, 
NameValueCollection config)

Modified: 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/DerbyMembershipProvider.cs
===================================================================
--- 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/DerbyMembershipProvider.cs   
    2007-05-30 12:11:26 UTC (rev 78197)
+++ 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/DerbyMembershipProvider.cs   
    2007-05-30 12:31:50 UTC (rev 78198)
@@ -45,6 +45,9 @@
 using System.Web.Security;
 
 namespace Mainsoft.Web.Security {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public class DerbyMembershipProvider : MembershipProvider
        {
                const int SALT_BYTES = 16;

Modified: 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/ServletAuthenticationModule.cs
===================================================================
--- 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/ServletAuthenticationModule.cs
   2007-05-30 12:11:26 UTC (rev 78197)
+++ 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.Security/ServletAuthenticationModule.cs
   2007-05-30 12:31:50 UTC (rev 78198)
@@ -34,6 +34,9 @@
 
 namespace Mainsoft.Web.Security
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public sealed class SevletAuthenticationModule : IHttpModule
        {
                public void Dispose () {

Modified: 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ObjectInputStream.cs
===================================================================
--- trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ObjectInputStream.cs 
2007-05-30 12:11:26 UTC (rev 78197)
+++ trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ObjectInputStream.cs 
2007-05-30 12:31:50 UTC (rev 78198)
@@ -30,6 +30,9 @@
 
 namespace Mainsoft.Web.SessionState
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public sealed partial class ServletSessionStateStoreProvider
        {
                sealed class ObjectInputStream : System.IO.Stream, ObjectInput

Modified: 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ServletSessionIDManager.cs
===================================================================
--- 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ServletSessionIDManager.cs
   2007-05-30 12:11:26 UTC (rev 78197)
+++ 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ServletSessionIDManager.cs
   2007-05-30 12:31:50 UTC (rev 78198)
@@ -33,6 +33,9 @@
 
 namespace Mainsoft.Web.SessionState
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public sealed class ServletSessionIDManager : ISessionIDManager
        {
                #region ISessionIDManager Members

Modified: 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ServletSessionStateItemCollection.cs
===================================================================
--- 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ServletSessionStateItemCollection.cs
 2007-05-30 12:11:26 UTC (rev 78197)
+++ 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ServletSessionStateItemCollection.cs
 2007-05-30 12:31:50 UTC (rev 78198)
@@ -37,6 +37,9 @@
 
 namespace Mainsoft.Web.SessionState
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public sealed partial class ServletSessionStateStoreProvider
        {
                sealed class ServletSessionStateItemCollection : 
ISessionStateItemCollection, java.io.Externalizable

Modified: 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ServletSessionStateStoreProvider.cs
===================================================================
--- 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ServletSessionStateStoreProvider.cs
  2007-05-30 12:11:26 UTC (rev 78197)
+++ 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/ServletSessionStateStoreProvider.cs
  2007-05-30 12:31:50 UTC (rev 78198)
@@ -36,6 +36,9 @@
 
 namespace Mainsoft.Web.SessionState
 {
+       /// <summary>
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
+       /// </summary>
        public sealed partial class ServletSessionStateStoreProvider : 
SessionStateStoreProviderBase
        {
                #region Public Interface

Modified: 
trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/SessionListener.cs
===================================================================
--- trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/SessionListener.cs   
2007-05-30 12:11:26 UTC (rev 78197)
+++ trunk/mcs/class/Mainsoft.Web/Mainsoft.Web.SessionState/SessionListener.cs   
2007-05-30 12:31:50 UTC (rev 78198)
@@ -32,7 +32,7 @@
 namespace Mainsoft.Web.SessionState
 {
        /// <summary>
-       /// Summary description for Class1.
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
        /// </summary>
        public class SessionListener : javax.servlet.http.HttpSessionListener
        {
@@ -72,7 +72,7 @@
 namespace System.Web.GH
 {
        /// <summary>
-       /// Summary description for Class1.
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
        /// </summary>
        public class SessionListener : Mainsoft.Web.SessionState.SessionListener
        {
@@ -82,7 +82,7 @@
 namespace System.Web.J2EE
 {
        /// <summary>
-       /// Summary description for Class1.
+       /// <para>This class supports the Framework infrastructure and is not 
intended to be used directly from your code.</para>
        /// </summary>
        public class SessionListener : Mainsoft.Web.SessionState.SessionListener
        {

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to