2006-10-10 Igor Zelmanovich <igorz@mainsoft.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / HtmlTextWriterAttribute.cs
index 69e2fb94aaeb19a358befe5561b848b9d1433778..6d75a4a33b9c75b470c3d1b64589f1b420517343 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 Novell
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-namespace System.Web.UI{
+namespace System.Web.UI {
+#if !NET_2_0
+       [Serializable]
+#endif
        public enum HtmlTextWriterAttribute {
                Accesskey,
                Align,
@@ -71,21 +72,20 @@ namespace System.Web.UI{
                Width,
                Wrap,
 #if NET_2_0
-               Abbr = 40,
-               AutoComplete = 41,
-               Category = 42,
-               Content = 43,
-               Coords = 44,
-               DesignerRegion = 45,
-               Dir = 46,
-               Headers = 47,
-               Longdesc = 48,
-               Rel = 49,
-               Scope = 50,
-               Shape = 51,
-               Usemap = 52,
-               VCardName = 53
+               Abbr,
+               AutoComplete,
+               Axis,
+               Content,
+               Coords,
+               DesignerRegion,
+               Dir,
+               Headers,
+               Longdesc,
+               Rel,
+               Scope,
+               Shape,
+               Usemap,
+               VCardName
 #endif
-       } 
-} // namespace System.Web.UI
-
+       }
+}