[asp.net] use auto-generated backing fields for all properties
[mono.git] / mcs / class / System.Web / System.Web.UI / HtmlTextWriterAttribute.cs
index aebbc0ae513cf52eafa2e6bbff512cf50a7d150a..e4d334fb317ff643b030c0b0dd8607c208c5f5dd 100644 (file)
@@ -1,12 +1,10 @@
+// 
+// System.Web.UI.HtmlTextWriterTag
 //
-// System.Web.UI.HtmlTextWriterAttribute.cs
-//
-// Authors:
-//     Leen Toelen (toelen@hotmail.com)
-//     Sanjay Gupta (gsanjay@novell.com)
-//
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Author:
+//        Ben Maurer <bmaurer@novell.com>
 //
+// (c) 2005-2010 Novell
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
@@ -28,7 +26,8 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-namespace System.Web.UI{
+namespace System.Web.UI
+{
        public enum HtmlTextWriterAttribute {
                Accesskey,
                Align,
@@ -70,22 +69,19 @@ namespace System.Web.UI{
                Value,
                Width,
                Wrap,
-#if NET_2_0
-               Abbr = 40,
-               AutoComplete = 41,
-               Axis = 42,
-               Content = 43,
-               Coords = 44,
-               DesignerRegion = 45,
-               Dir = 46,
-               Headers = 47,
-               Longdesc = 48,
-               Rel = 49,
-               Scope = 50,
-               Shape = 51,
-               Usemap = 52,
-               VCardName = 53
-#endif
-       } 
-} // namespace System.Web.UI
-
+               Abbr,
+               AutoComplete,
+               Axis,
+               Content,
+               Coords,
+               DesignerRegion,
+               Dir,
+               Headers,
+               Longdesc,
+               Rel,
+               Scope,
+               Shape,
+               Usemap,
+               VCardName
+       }
+}