Merge pull request #2530 from lambdageek/monoerror-mono_string_new
[mono.git] / mcs / class / System.Web / System.Web / ApplicationShutdownReason.cs
index 603651effc60d680d74dd7a24d8ba6984eeb7bbd..e01cd41af44b9cc0cc190774d498d500d009e287 100644 (file)
@@ -4,6 +4,8 @@
 // Authors:
 //     Duncan Mak (duncan@ximian.com)
 //
+// Copyright (C) 2004-2009 Novell, Inc (http://www.novell.com)
+//
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // "Software"), to deal in the Software without restriction, including
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
 //
 
-#if NET_2_0
 namespace System.Web
 {
-        [Serializable]
         public enum ApplicationShutdownReason
         {
                 None = 0,
@@ -47,6 +46,8 @@ namespace System.Web
                 HttpRuntimeClose = 12,
                 InitializationError = 13,
                 MaxRecompilationsReached = 14
+               , BuildManagerChange = 15
         }
 }
-#endif
+
+