using System; using Cpp2IlInjected; namespace System.Xml { /// Defines the namespace scope. // Token: 0x020000F4 RID: 244 [Token(Token = "0x20000F4")] public enum XmlNamespaceScope { /// 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. // Token: 0x0400062D RID: 1581 [Token(Token = "0x400062D")] All, /// 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. // Token: 0x0400062E RID: 1582 [Token(Token = "0x400062E")] ExcludeXml, /// All namespaces that are defined locally at the current node. // Token: 0x0400062F RID: 1583 [Token(Token = "0x400062F")] Local } }