(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.XML / System.Xml.Schema / XmlTypeCode.cs
blob161d7ac6e8d64432b1f49e0a34f0313357874c88
1 //
2 // XmlTypeCode.cs
3 //
4 // Author:
5 // Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
6 //
7 // Note:
8 // Precisely to say, these types are based XPath Data Model, but Microsoft
9 // guys don't know how to make precise name.
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 //
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 //
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 #if NET_2_0
34 namespace System.Xml.Schema
36 public enum XmlTypeCode
38 None,
39 Item,
40 Node,
41 Document, // node
42 Element, // node
43 Attribute, // node
44 Namespace, // node
45 ProcessingInstruction, // node
46 Comment, // node
47 Text, // node
48 AnyAtomicType, // xdt
49 UntypedAtomic, // xdt
50 String,
51 Boolean,
52 Decimal,
53 Float,
54 Double,
55 Duration,
56 DateTime,
57 Time,
58 Date,
59 GYearMonth,
60 GYear,
61 GMonthDay,
62 GDay,
63 GMonth,
64 HexBinary,
65 Base64Binary,
66 AnyUri,
67 QName,
68 Notation,
69 NormalizedString,
70 Token,
71 Language,
72 NmToken, // NmTokens is not primitive
73 Name,
74 NCName,
75 Id,
76 Idref, // Idrefs is not primitive
77 Entity, // Entities is not primitive
78 Integer,
79 NonPositiveInteger,
80 NegativeInteger,
81 Long,
82 Int,
83 Short,
84 Byte,
85 NonNegativeInteger,
86 UnsignedLong,
87 UnsignedInt,
88 UnsignedShort,
89 UnsignedByte,
90 PositiveInteger,
91 YearMonthDuration, // xdt
92 DayTimeDuration, // xdt
95 #endif