233 lines
9.0 KiB
C#
233 lines
9.0 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml.Schema
|
|
{
|
|
/// <summary>Represents the W3C XML Schema Definition Language (XSD) schema types.</summary>
|
|
// Token: 0x02000129 RID: 297
|
|
[Token(Token = "0x2000129")]
|
|
public enum XmlTypeCode
|
|
{
|
|
/// <summary>No type information.</summary>
|
|
// Token: 0x04000467 RID: 1127
|
|
[Token(Token = "0x4000467")]
|
|
None,
|
|
/// <summary>An item such as a node or atomic value.</summary>
|
|
// Token: 0x04000468 RID: 1128
|
|
[Token(Token = "0x4000468")]
|
|
Item,
|
|
/// <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
// Token: 0x04000469 RID: 1129
|
|
[Token(Token = "0x4000469")]
|
|
Node,
|
|
/// <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
// Token: 0x0400046A RID: 1130
|
|
[Token(Token = "0x400046A")]
|
|
Document,
|
|
/// <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
// Token: 0x0400046B RID: 1131
|
|
[Token(Token = "0x400046B")]
|
|
Element,
|
|
/// <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
// Token: 0x0400046C RID: 1132
|
|
[Token(Token = "0x400046C")]
|
|
Attribute,
|
|
/// <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
// Token: 0x0400046D RID: 1133
|
|
[Token(Token = "0x400046D")]
|
|
Namespace,
|
|
/// <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
// Token: 0x0400046E RID: 1134
|
|
[Token(Token = "0x400046E")]
|
|
ProcessingInstruction,
|
|
/// <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
// Token: 0x0400046F RID: 1135
|
|
[Token(Token = "0x400046F")]
|
|
Comment,
|
|
/// <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
// Token: 0x04000470 RID: 1136
|
|
[Token(Token = "0x4000470")]
|
|
Text,
|
|
/// <summary>Any atomic value of a union.</summary>
|
|
// Token: 0x04000471 RID: 1137
|
|
[Token(Token = "0x4000471")]
|
|
AnyAtomicType,
|
|
/// <summary>An untyped atomic value.</summary>
|
|
// Token: 0x04000472 RID: 1138
|
|
[Token(Token = "0x4000472")]
|
|
UntypedAtomic,
|
|
/// <summary>A W3C XML Schema <see langword="xs:string" /> type.</summary>
|
|
// Token: 0x04000473 RID: 1139
|
|
[Token(Token = "0x4000473")]
|
|
String,
|
|
/// <summary>A W3C XML Schema <see langword="xs:boolean" /> type.</summary>
|
|
// Token: 0x04000474 RID: 1140
|
|
[Token(Token = "0x4000474")]
|
|
Boolean,
|
|
/// <summary>A W3C XML Schema <see langword="xs:decimal" /> type.</summary>
|
|
// Token: 0x04000475 RID: 1141
|
|
[Token(Token = "0x4000475")]
|
|
Decimal,
|
|
/// <summary>A W3C XML Schema <see langword="xs:float" /> type.</summary>
|
|
// Token: 0x04000476 RID: 1142
|
|
[Token(Token = "0x4000476")]
|
|
Float,
|
|
/// <summary>A W3C XML Schema <see langword="xs:double" /> type.</summary>
|
|
// Token: 0x04000477 RID: 1143
|
|
[Token(Token = "0x4000477")]
|
|
Double,
|
|
/// <summary>A W3C XML Schema <see langword="xs:Duration" /> type.</summary>
|
|
// Token: 0x04000478 RID: 1144
|
|
[Token(Token = "0x4000478")]
|
|
Duration,
|
|
/// <summary>A W3C XML Schema <see langword="xs:dateTime" /> type.</summary>
|
|
// Token: 0x04000479 RID: 1145
|
|
[Token(Token = "0x4000479")]
|
|
DateTime,
|
|
/// <summary>A W3C XML Schema <see langword="xs:time" /> type.</summary>
|
|
// Token: 0x0400047A RID: 1146
|
|
[Token(Token = "0x400047A")]
|
|
Time,
|
|
/// <summary>A W3C XML Schema <see langword="xs:date" /> type.</summary>
|
|
// Token: 0x0400047B RID: 1147
|
|
[Token(Token = "0x400047B")]
|
|
Date,
|
|
/// <summary>A W3C XML Schema <see langword="xs:gYearMonth" /> type.</summary>
|
|
// Token: 0x0400047C RID: 1148
|
|
[Token(Token = "0x400047C")]
|
|
GYearMonth,
|
|
/// <summary>A W3C XML Schema <see langword="xs:gYear" /> type.</summary>
|
|
// Token: 0x0400047D RID: 1149
|
|
[Token(Token = "0x400047D")]
|
|
GYear,
|
|
/// <summary>A W3C XML Schema <see langword="xs:gMonthDay" /> type.</summary>
|
|
// Token: 0x0400047E RID: 1150
|
|
[Token(Token = "0x400047E")]
|
|
GMonthDay,
|
|
/// <summary>A W3C XML Schema <see langword="xs:gDay" /> type.</summary>
|
|
// Token: 0x0400047F RID: 1151
|
|
[Token(Token = "0x400047F")]
|
|
GDay,
|
|
/// <summary>A W3C XML Schema <see langword="xs:gMonth" /> type.</summary>
|
|
// Token: 0x04000480 RID: 1152
|
|
[Token(Token = "0x4000480")]
|
|
GMonth,
|
|
/// <summary>A W3C XML Schema <see langword="xs:hexBinary" /> type.</summary>
|
|
// Token: 0x04000481 RID: 1153
|
|
[Token(Token = "0x4000481")]
|
|
HexBinary,
|
|
/// <summary>A W3C XML Schema <see langword="xs:base64Binary" /> type.</summary>
|
|
// Token: 0x04000482 RID: 1154
|
|
[Token(Token = "0x4000482")]
|
|
Base64Binary,
|
|
/// <summary>A W3C XML Schema <see langword="xs:anyURI" /> type.</summary>
|
|
// Token: 0x04000483 RID: 1155
|
|
[Token(Token = "0x4000483")]
|
|
AnyUri,
|
|
/// <summary>A W3C XML Schema <see langword="xs:QName" /> type.</summary>
|
|
// Token: 0x04000484 RID: 1156
|
|
[Token(Token = "0x4000484")]
|
|
QName,
|
|
/// <summary>A W3C XML Schema <see langword="xs:NOTATION" /> type.</summary>
|
|
// Token: 0x04000485 RID: 1157
|
|
[Token(Token = "0x4000485")]
|
|
Notation,
|
|
/// <summary>A W3C XML Schema <see langword="xs:normalizedString" /> type.</summary>
|
|
// Token: 0x04000486 RID: 1158
|
|
[Token(Token = "0x4000486")]
|
|
NormalizedString,
|
|
/// <summary>A W3C XML Schema <see langword="xs:token" /> type.</summary>
|
|
// Token: 0x04000487 RID: 1159
|
|
[Token(Token = "0x4000487")]
|
|
Token,
|
|
/// <summary>A W3C XML Schema <see langword="xs:language" /> type.</summary>
|
|
// Token: 0x04000488 RID: 1160
|
|
[Token(Token = "0x4000488")]
|
|
Language,
|
|
/// <summary>A W3C XML Schema <see langword="xs:NMTOKEN" /> type.</summary>
|
|
// Token: 0x04000489 RID: 1161
|
|
[Token(Token = "0x4000489")]
|
|
NmToken,
|
|
/// <summary>A W3C XML Schema <see langword="xs:Name" /> type.</summary>
|
|
// Token: 0x0400048A RID: 1162
|
|
[Token(Token = "0x400048A")]
|
|
Name,
|
|
/// <summary>A W3C XML Schema <see langword="xs:NCName" /> type.</summary>
|
|
// Token: 0x0400048B RID: 1163
|
|
[Token(Token = "0x400048B")]
|
|
NCName,
|
|
/// <summary>A W3C XML Schema <see langword="xs:ID" /> type.</summary>
|
|
// Token: 0x0400048C RID: 1164
|
|
[Token(Token = "0x400048C")]
|
|
Id,
|
|
/// <summary>A W3C XML Schema <see langword="xs:IDREF" /> type.</summary>
|
|
// Token: 0x0400048D RID: 1165
|
|
[Token(Token = "0x400048D")]
|
|
Idref,
|
|
/// <summary>A W3C XML Schema <see langword="xs:ENTITY" /> type.</summary>
|
|
// Token: 0x0400048E RID: 1166
|
|
[Token(Token = "0x400048E")]
|
|
Entity,
|
|
/// <summary>A W3C XML Schema <see langword="xs:integer" /> type.</summary>
|
|
// Token: 0x0400048F RID: 1167
|
|
[Token(Token = "0x400048F")]
|
|
Integer,
|
|
/// <summary>A W3C XML Schema <see langword="xs:nonPositiveInteger" /> type.</summary>
|
|
// Token: 0x04000490 RID: 1168
|
|
[Token(Token = "0x4000490")]
|
|
NonPositiveInteger,
|
|
/// <summary>A W3C XML Schema <see langword="xs:negativeInteger" /> type.</summary>
|
|
// Token: 0x04000491 RID: 1169
|
|
[Token(Token = "0x4000491")]
|
|
NegativeInteger,
|
|
/// <summary>A W3C XML Schema <see langword="xs:long" /> type.</summary>
|
|
// Token: 0x04000492 RID: 1170
|
|
[Token(Token = "0x4000492")]
|
|
Long,
|
|
/// <summary>A W3C XML Schema <see langword="xs:int" /> type.</summary>
|
|
// Token: 0x04000493 RID: 1171
|
|
[Token(Token = "0x4000493")]
|
|
Int,
|
|
/// <summary>A W3C XML Schema <see langword="xs:short" /> type.</summary>
|
|
// Token: 0x04000494 RID: 1172
|
|
[Token(Token = "0x4000494")]
|
|
Short,
|
|
/// <summary>A W3C XML Schema <see langword="xs:byte" /> type.</summary>
|
|
// Token: 0x04000495 RID: 1173
|
|
[Token(Token = "0x4000495")]
|
|
Byte,
|
|
/// <summary>A W3C XML Schema <see langword="xs:nonNegativeInteger" /> type.</summary>
|
|
// Token: 0x04000496 RID: 1174
|
|
[Token(Token = "0x4000496")]
|
|
NonNegativeInteger,
|
|
/// <summary>A W3C XML Schema <see langword="xs:unsignedLong" /> type.</summary>
|
|
// Token: 0x04000497 RID: 1175
|
|
[Token(Token = "0x4000497")]
|
|
UnsignedLong,
|
|
/// <summary>A W3C XML Schema <see langword="xs:unsignedInt" /> type.</summary>
|
|
// Token: 0x04000498 RID: 1176
|
|
[Token(Token = "0x4000498")]
|
|
UnsignedInt,
|
|
/// <summary>A W3C XML Schema <see langword="xs:unsignedShort" /> type.</summary>
|
|
// Token: 0x04000499 RID: 1177
|
|
[Token(Token = "0x4000499")]
|
|
UnsignedShort,
|
|
/// <summary>A W3C XML Schema <see langword="xs:unsignedByte" /> type.</summary>
|
|
// Token: 0x0400049A RID: 1178
|
|
[Token(Token = "0x400049A")]
|
|
UnsignedByte,
|
|
/// <summary>A W3C XML Schema <see langword="xs:positiveInteger" /> type.</summary>
|
|
// Token: 0x0400049B RID: 1179
|
|
[Token(Token = "0x400049B")]
|
|
PositiveInteger,
|
|
/// <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
// Token: 0x0400049C RID: 1180
|
|
[Token(Token = "0x400049C")]
|
|
YearMonthDuration,
|
|
/// <summary>This value supports the .NET Framework infrastructure and is not intended to be used directly from your code.</summary>
|
|
// Token: 0x0400049D RID: 1181
|
|
[Token(Token = "0x400049D")]
|
|
DayTimeDuration
|
|
}
|
|
}
|