Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.Configuration_2.0/PagesEnableSessionState.cs')
-rw-r--r--mcs/class/System.Web/System.Web.Configuration_2.0/PagesEnableSessionState.cs19
1 files changed, 8 insertions, 11 deletions
diff --git a/mcs/class/System.Web/System.Web.Configuration_2.0/PagesEnableSessionState.cs b/mcs/class/System.Web/System.Web.Configuration_2.0/PagesEnableSessionState.cs
index 3895dc74f42..4379e8051ff 100644
--- a/mcs/class/System.Web/System.Web.Configuration_2.0/PagesEnableSessionState.cs
+++ b/mcs/class/System.Web/System.Web.Configuration_2.0/PagesEnableSessionState.cs
@@ -28,17 +28,14 @@
using System.Resources;
+#if NET_2_0
namespace System.Web.Configuration
{
-#if NET_2_0
- public
-#else
- internal
-#endif
- enum PagesEnableSessionState
- {
- False = 0,
- ReadOnly = 1,
- True = 2
- }
+ public enum PagesEnableSessionState
+ {
+ False = 0,
+ ReadOnly = 1,
+ True = 2
+ }
}
+#endif