2006-10-10 Igor Zelmanovich <igorz@mainsoft.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / HtmlTextWriterAttribute.cs
index abba64cd639598bddbb15054e933397fceee8012..6d75a4a33b9c75b470c3d1b64589f1b420517343 100644 (file)
@@ -1,4 +1,10 @@
-
+// 
+// System.Web.UI.HtmlTextWriterTag
+//
+// 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
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-/*     System.Web.UI\r
-*      Authors\r
-*              Leen Toelen (toelen@hotmail.com)\r
-*/\r
-\r
-\r
-namespace System.Web.UI{\r
-\r
-public enum HtmlTextWriterAttribute {\r
-Accesskey,\r
-Align,\r
-Alt,\r
-Background,\r
-Bgcolor,\r
-Border,\r
-Bordercolor,\r
-Cellpadding,\r
-Cellspacing,\r
-Checked,\r
-Class,\r
-Cols,\r
-Colspan,\r
-Disabled,\r
-For,\r
-Height,\r
-Href,\r
-Id,\r
-Maxlength,\r
-Multiple,\r
-Name,\r
-Nowrap,\r
-Onchange,\r
-Onclick,\r
-ReadOnly,\r
-Rows,\r
-Rowspan,\r
-Rules,\r
-Selected,\r
-Size,\r
-Src,\r
-Style,\r
-Tabindex,\r
-Target,\r
-Title,\r
-Type,\r
-Valign,\r
-Value,\r
-Width,\r
-Wrap,\r
-} \r
\r
-\r
-} // namespace System.Web.UI.HtmlControls\r
-\r
+
+namespace System.Web.UI {
+#if !NET_2_0
+       [Serializable]
+#endif
+       public enum HtmlTextWriterAttribute {
+               Accesskey,
+               Align,
+               Alt,
+               Background,
+               Bgcolor,
+               Border,
+               Bordercolor,
+               Cellpadding,
+               Cellspacing,
+               Checked,
+               Class,
+               Cols,
+               Colspan,
+               Disabled,
+               For,
+               Height,
+               Href,
+               Id,
+               Maxlength,
+               Multiple,
+               Name,
+               Nowrap,
+               Onchange,
+               Onclick,
+               ReadOnly,
+               Rows,
+               Rowspan,
+               Rules,
+               Selected,
+               Size,
+               Src,
+               Style,
+               Tabindex,
+               Target,
+               Title,
+               Type,
+               Valign,
+               Value,
+               Width,
+               Wrap,
+#if NET_2_0
+               Abbr,
+               AutoComplete,
+               Axis,
+               Content,
+               Coords,
+               DesignerRegion,
+               Dir,
+               Headers,
+               Longdesc,
+               Rel,
+               Scope,
+               Shape,
+               Usemap,
+               VCardName
+#endif
+       }
+}