This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
using System;
using Cpp2IlInjected;
namespace System.Xml.XPath
{
/// <summary>Defines the XPath node types that can be returned from the <see cref="T:System.Xml.XPath.XPathNavigator" /> class.</summary>
// Token: 0x0200008B RID: 139
[Token(Token = "0x200008B")]
public enum XPathNodeType
{
/// <summary>The root node of the XML document or node tree.</summary>
// Token: 0x0400029D RID: 669
[Token(Token = "0x400029D")]
Root,
/// <summary>An element, such as &lt;element&gt;.</summary>
// Token: 0x0400029E RID: 670
[Token(Token = "0x400029E")]
Element,
/// <summary>An attribute, such as id='123'.</summary>
// Token: 0x0400029F RID: 671
[Token(Token = "0x400029F")]
Attribute,
/// <summary>A namespace, such as xmlns="namespace".</summary>
// Token: 0x040002A0 RID: 672
[Token(Token = "0x40002A0")]
Namespace,
/// <summary>The text content of a node. Equivalent to the Document Object Model (DOM) Text and CDATA node types. Contains at least one character.</summary>
// Token: 0x040002A1 RID: 673
[Token(Token = "0x40002A1")]
Text,
/// <summary>A node with white space characters and xml:space set to preserve.</summary>
// Token: 0x040002A2 RID: 674
[Token(Token = "0x40002A2")]
SignificantWhitespace,
/// <summary>A node with only white space characters and no significant white space. White space characters are #x20, #x9, #xD, or #xA.</summary>
// Token: 0x040002A3 RID: 675
[Token(Token = "0x40002A3")]
Whitespace,
/// <summary>A processing instruction, such as &lt;?pi test?&gt;. This does not include XML declarations, which are not visible to the <see cref="T:System.Xml.XPath.XPathNavigator" /> class. </summary>
// Token: 0x040002A4 RID: 676
[Token(Token = "0x40002A4")]
ProcessingInstruction,
/// <summary>A comment, such as &lt;!-- my comment --&gt;</summary>
// Token: 0x040002A5 RID: 677
[Token(Token = "0x40002A5")]
Comment,
/// <summary>Any of the <see cref="T:System.Xml.XPath.XPathNodeType" /> node types.</summary>
// Token: 0x040002A6 RID: 678
[Token(Token = "0x40002A6")]
All
}
}