This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.Xml.XPath
{
/// <summary>Defines the namespace scope.</summary>
// Token: 0x02000102 RID: 258
[Token(Token = "0x2000102")]
public enum XPathNamespaceScope
{
/// <summary>Returns all namespaces defined in the scope of the current node. This includes the xmlns:xml namespace which is always declared implicitly. The order of the namespaces returned is not defined.</summary>
// Token: 0x0400066E RID: 1646
[Token(Token = "0x400066E")]
All,
/// <summary>Returns all namespaces defined in the scope of the current node, excluding the xmlns:xml namespace. The xmlns:xml namespace is always declared implicitly. The order of the namespaces returned is not defined.</summary>
// Token: 0x0400066F RID: 1647
[Token(Token = "0x400066F")]
ExcludeXml,
/// <summary>Returns all namespaces that are defined locally at the current node. </summary>
// Token: 0x04000670 RID: 1648
[Token(Token = "0x4000670")]
Local
}
}