Merge pull request #2700 from akoeplinger/monotouch-mobile-static
[mono.git] / mcs / class / System.Web / System.Web.UI / UrlTypes.cs
index 6fd54304e6f7cbab46bcbb49d454a7681fce8aa3..01c7640c2cc9c2ae3a2f9cb013d3beb17cd0a517 100644 (file)
@@ -4,7 +4,7 @@
 // Authors:
 //     Sanjay Gupta (gsanjay@novell.com)
 //
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2010 Novell, Inc (http://www.novell.com)
 //
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-namespace System.Web.UI {
+namespace System.Web.UI 
+{
        [FlagsAttribute, SerializableAttribute]
-       public enum UrlTypes {
+       public enum UrlTypes 
+       {
                Absolute = 1,
                AppRelative = 2,
                DocRelative = 4,
                RootRelative = 8
        } 
 }
-#endif