* RuleFiringRecord.cs:
authorDuncan Mak <duncan@mono-cvs.ximian.com>
Tue, 3 Aug 2004 01:55:15 +0000 (01:55 -0000)
committerDuncan Mak <duncan@mono-cvs.ximian.com>
Tue, 3 Aug 2004 01:55:15 +0000 (01:55 -0000)
* WebApplicationInformation:
* WebEventFormatter: Signature fixes, hide the constructor.

* IRegiisUtility.cs: Fixed name.

* EventNotificationType.cs:
* SessionStateType.cs:
* SqlFeatures.cs: Added missing attributes.

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

mcs/class/System.Web/System.Web.Management/ChangeLog
mcs/class/System.Web/System.Web.Management/EventNotificationType.cs
mcs/class/System.Web/System.Web.Management/IRegiisUtility.cs
mcs/class/System.Web/System.Web.Management/RuleFiringRecord.cs
mcs/class/System.Web/System.Web.Management/SessionStateType.cs
mcs/class/System.Web/System.Web.Management/SqlFeatures.cs
mcs/class/System.Web/System.Web.Management/WebApplicationInformation.cs
mcs/class/System.Web/System.Web.Management/WebEventFormatter.cs

index f38b11ef44630881dad8e4c3b66dd071f1358679..3421810ee266daac12e1bf7ba8fc35f0bf0b346d 100644 (file)
@@ -1,3 +1,15 @@
+2004-08-02  Duncan Mak  <duncan@ximian.com>
+
+       * RuleFiringRecord.cs:
+       * WebApplicationInformation:
+       * WebEventFormatter: Signature fixes, hide the constructor.
+
+       * IRegiisUtility.cs: Fixed name.
+
+       * EventNotificationType.cs:
+       * SessionStateType.cs:
+       * SqlFeatures.cs: Added missing attributes.
+       
 2004-08-02  Duncan Mak  <duncan@ximian.com>
 
        * EventNotificationType.cs:
index 1ff136ebd8d1ee2fbd5b339cb1cb42c9399eded8..0e248a129237d674c1b960ef8c37f5105a8fc0f6 100644 (file)
@@ -32,6 +32,7 @@ using System.Runtime.InteropServices;
 #if NET_2_0
 namespace System.Web.Management
 {
+        [Serializable]
         public enum EventNotificationType
         {
                 Regular = 0,
index d8788445375eaf3548f8c80fa3e5cbe1e5d69535..051f5b33d12e6b99a2b01da2b2ad98b8d8e29fe7 100644 (file)
@@ -1,5 +1,5 @@
 //
-// System.Web.Management.IRegisiisUtility.cs
+// System.Web.Management.IRegiisUtility.cs
 //
 // Authors:
 //     Duncan Mak (duncan@ximian.com)
@@ -32,7 +32,7 @@ using System.Runtime.InteropServices;
 #if NET_2_0
 namespace System.Web.Management
 {
-        public interface IRegisiisUtility
+        public interface IRegiisUtility
         {
                 void ProtectedConfigAction (
                         long actionToPerform,
index 408281ff011bae45891a8a0af80bd2562132ac7f..f8627fd8a8d578ed620fb48727e689093eb29dce 100644 (file)
@@ -34,6 +34,10 @@ namespace System.Web.Management
 {
         public class RuleFiringRecord
         {
+                internal RuleFiringRecord ()
+                {
+                }
+                
                 public DateTime LastFired {
                         get {
                                 throw new NotImplementedException ();
index ae239bb9d368a00a079e2a9d30ca5858b27270b9..d0cf520a44fc84922c8d4174994a228b48b59c24 100644 (file)
@@ -29,6 +29,7 @@
 #if NET_2_0
 namespace System.Web.Management
 {
+        [Serializable]
         public enum SessionStateType
         {
                 Temporary = 0,
index 0add71d81a189a78bb075d53ed2b821d31ddd90b..a1df23ffd56b3a0f1c62a519cff575e51f621ddc 100644 (file)
 #if NET_2_0
 namespace System.Web.Management
 {
+        [Flags, Serializable]
         public enum SqlFeatures
         {
                 None = 0,
                 Membership = 1,
                 Profile = 2,
-                Rolemanager = 4,
+                RoleManager = 4,
                 SiteCounters = 8,
                 Personalization = 16,
                 SqlWebEventProvider = 32,
index 992a80a28a505d9d1a418295fa77275eaedf15e6..7243b6bb6830d912c30829756c34c72e8a22787b 100644 (file)
@@ -35,6 +35,10 @@ namespace System.Web.Management
         public class WebApplicationInformation
         {
                 string application_domain, application_path, application_virtual_path, machine_name, trust_level;
+
+                internal WebApplicationInformation ()
+                {
+                }
                 
                 public string ApplicationDomain {
                         get {
index a3310c4e8c9b16adfaf195e1b373083b2c00a38f..30b4c1234ac250faa4e43d2dd5878e8a7dcdc3fe 100644 (file)
@@ -32,6 +32,10 @@ namespace System.Web.Management
         public class WebEventFormatter
         {
                 int indentation_level, tab_size;
+
+                internal WebEventFormatter ()
+                {
+                }
                 
                 public int IndentationLevel {