// // XmlSchemaBuiltInType.cs // // Author: // Atsushi Enomoto // #if NET_2_0 namespace System.Xml.Schema { public enum XmlSchemaBuiltInType { None, AnyType, AnySimpleType, String, Bool, Float, Double, Decimal, Duration, AnyUri, Base64Binary, Byte, Date, DateTime, GDay, GMonth, GMonthDay, GYear, GYearMonth, HexBinary, Entities, Entity, Id, Idref, Idrefs, Int, Integer, Language, Long, Name, NCName, NegativeInteger, NmToken, NmTokens, NonNegativeInteger, NonPositiveInteger, Normalizedstring, Notation, PositiveInteger, QName, Short, Time, Token, UnsignedByte, UnsignedInt, UnsignedLong, UnsignedShort } } #endif