using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Specifies the type of node.
// Token: 0x0200007F RID: 127
[Token(Token = "0x200007F")]
public enum XmlNodeType
{
/// This is returned by the if a method has not been called.
// Token: 0x0400026F RID: 623
[Token(Token = "0x400026F")]
None,
/// An element (for example, <item> ).
// Token: 0x04000270 RID: 624
[Token(Token = "0x4000270")]
Element,
/// An attribute (for example, id='123' ).
// Token: 0x04000271 RID: 625
[Token(Token = "0x4000271")]
Attribute,
/// The text content of a node.
// Token: 0x04000272 RID: 626
[Token(Token = "0x4000272")]
Text,
/// A CDATA section (for example, <![CDATA[my escaped text]]> ).
// Token: 0x04000273 RID: 627
[Token(Token = "0x4000273")]
CDATA,
/// A reference to an entity (for example, # ).
// Token: 0x04000274 RID: 628
[Token(Token = "0x4000274")]
EntityReference,
/// An entity declaration (for example, <!ENTITY...> ).
// Token: 0x04000275 RID: 629
[Token(Token = "0x4000275")]
Entity,
/// A processing instruction (for example, <?pi test?> ).
// Token: 0x04000276 RID: 630
[Token(Token = "0x4000276")]
ProcessingInstruction,
/// A comment (for example, <!-- my comment --> ).
// Token: 0x04000277 RID: 631
[Token(Token = "0x4000277")]
Comment,
/// A document object that, as the root of the document tree, provides access to the entire XML document.
// Token: 0x04000278 RID: 632
[Token(Token = "0x4000278")]
Document,
/// The document type declaration, indicated by the following tag (for example, <!DOCTYPE...> ).
// Token: 0x04000279 RID: 633
[Token(Token = "0x4000279")]
DocumentType,
/// A document fragment.
// Token: 0x0400027A RID: 634
[Token(Token = "0x400027A")]
DocumentFragment,
/// A notation in the document type declaration (for example, <!NOTATION...> ).
// Token: 0x0400027B RID: 635
[Token(Token = "0x400027B")]
Notation,
/// White space between markup.
// Token: 0x0400027C RID: 636
[Token(Token = "0x400027C")]
Whitespace,
/// White space between markup in a mixed content model or white space within the xml:space="preserve" scope.
// Token: 0x0400027D RID: 637
[Token(Token = "0x400027D")]
SignificantWhitespace,
/// An end element tag (for example, </item> ).
// Token: 0x0400027E RID: 638
[Token(Token = "0x400027E")]
EndElement,
/// Returned when gets to the end of the entity replacement as a result of a call to .
// Token: 0x0400027F RID: 639
[Token(Token = "0x400027F")]
EndEntity,
/// The XML declaration (for example, <?xml version='1.0'?> ).
// Token: 0x04000280 RID: 640
[Token(Token = "0x4000280")]
XmlDeclaration
}
}