[mono-config] use right type for result of strlen
[mono.git] / mcs / class / System.Web / System.Web.UI / HtmlTextWriterTag.cs
1 // 
2 // System.Web.UI.HtmlTextWriterTag
3 //
4 // Author:
5 //        Ben Maurer <bmaurer@novell.com>
6 //
7 // (c) 2005-2010 Novell, Inc (http://novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 namespace System.Web.UI
30 {
31         public enum HtmlTextWriterTag {
32                 Unknown,
33                 A,
34                 Acronym,
35                 Address,
36                 Area,
37                 B,
38                 Base,
39                 Basefont,
40                 Bdo,
41                 Bgsound,
42                 Big,
43                 Blockquote,
44                 Body,
45                 Br,
46                 Button,
47                 Caption,
48                 Center,
49                 Cite,
50                 Code,
51                 Col,
52                 Colgroup,
53                 Dd,
54                 Del,
55                 Dfn,
56                 Dir,
57                 Div,
58                 Dl,
59                 Dt,
60                 Em,
61                 Embed,
62                 Fieldset,
63                 Font,
64                 Form,
65                 Frame,
66                 Frameset,
67                 H1,
68                 H2,
69                 H3,
70                 H4,
71                 H5,
72                 H6,
73                 Head,
74                 Hr,
75                 Html,
76                 I,
77                 Iframe,
78                 Img,
79                 Input,
80                 Ins,
81                 Isindex,
82                 Kbd,
83                 Label,
84                 Legend,
85                 Li,
86                 Link,
87                 Map,
88                 Marquee,
89                 Menu,
90                 Meta,
91                 Nobr,
92                 Noframes,
93                 Noscript,
94                 Object,
95                 Ol,
96                 Option,
97                 P,
98                 Param,
99                 Pre,
100                 Q,
101                 Rt,
102                 Ruby,
103                 S,
104                 Samp,
105                 Script,
106                 Select,
107                 Small,
108                 Span,
109                 Strike,
110                 Strong,
111                 Style,
112                 Sub,
113                 Sup,
114                 Table,
115                 Tbody,
116                 Td,
117                 Textarea,
118                 Tfoot,
119                 Th,
120                 Thead,
121                 Title,
122                 Tr,
123                 Tt,
124                 U,
125                 Ul,
126                 Var,
127                 Wbr,
128                 Xml
129         }
130 }