2003-07-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.Compilation / TagType.cs
1 //
2 // System.Web.Compilation.TagType
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Ximian, Inc (http://www.ximian.com)
8 //
9 namespace System.Web.Compilation
10 {
11         enum TagType
12         {
13                 Text,
14                 Tag,
15                 Close,
16                 SelfClosing,
17                 Directive,
18                 ServerComment,
19                 DataBinding,
20                 CodeRender,
21                 CodeRenderExpression,
22                 Include
23         }
24 }
25