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
+24
View File
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System.Xml.XPath
{
/// <summary>Defines the namespace scope.</summary>
// Token: 0x02000088 RID: 136
[Token(Token = "0x2000088")]
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: 0x04000295 RID: 661
[Token(Token = "0x4000295")]
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: 0x04000296 RID: 662
[Token(Token = "0x4000296")]
ExcludeXml,
/// <summary>Returns all namespaces that are defined locally at the current node. </summary>
// Token: 0x04000297 RID: 663
[Token(Token = "0x4000297")]
Local
}
}