Files
27Aug2021-Cpp2IL-Dump/System.Xml/System/Xml/XmlNamespaceScope.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

25 lines
940 B
C#

using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Defines the namespace scope.</summary>
// Token: 0x020000F4 RID: 244
[Token(Token = "0x20000F4")]
public enum XmlNamespaceScope
{
/// <summary>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: 0x0400062D RID: 1581
[Token(Token = "0x400062D")]
All,
/// <summary>All namespaces defined in the scope of the current node, excluding the xmlns:xml namespace, which is always declared implicitly. The order of the namespaces returned is not defined.</summary>
// Token: 0x0400062E RID: 1582
[Token(Token = "0x400062E")]
ExcludeXml,
/// <summary>All namespaces that are defined locally at the current node.</summary>
// Token: 0x0400062F RID: 1583
[Token(Token = "0x400062F")]
Local
}
}