2004-01-13 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml / XmlInfoItemType.cs
1 //
2 // XmlInfoItemType.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
6 //
7 #if NET_1_2
8
9 namespace System.Xml
10 {
11         public enum XmlInfoItemType
12         {
13                 Element,
14                 Attribute,
15                 Namespace,
16                 Text,
17                 ProcessingInstruction,
18                 Comment,
19                 Document,
20                 AtomicValue
21         }
22 }
23 #endif