using System; using Cpp2IlInjected; namespace System.Xml.Linq { /// Represents an XML namespace. This class cannot be inherited. // Token: 0x02000004 RID: 4 [Token(Token = "0x2000004")] public sealed class XNamespace { // Token: 0x06000011 RID: 17 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000011")] [Address(RVA = "0x11CC570", Offset = "0x11CB570", VA = "0x1811CC570")] internal XNamespace(string namespaceName) { } /// Gets the Uniform Resource Identifier (URI) of this namespace. /// A that contains the URI of the namespace. // Token: 0x17000004 RID: 4 // (get) Token: 0x06000012 RID: 18 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x17000004")] public string NamespaceName { [Token(Token = "0x6000012")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")] get { return null; } } /// Returns an object created from this and the specified local name. /// A that contains a local name. /// An created from this and the specified local name. // Token: 0x06000013 RID: 19 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x6000013")] [Address(RVA = "0x11CC120", Offset = "0x11CB120", VA = "0x1811CC120")] public XName GetName(string localName) { return null; } /// Returns the URI of this . /// The URI of this . // Token: 0x06000014 RID: 20 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x6000014")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "3")] public override string ToString() { return null; } /// Gets the object that corresponds to no namespace. /// The that corresponds to no namespace. // Token: 0x17000005 RID: 5 // (get) Token: 0x06000015 RID: 21 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x17000005")] public static XNamespace None { [Token(Token = "0x6000015")] [Address(RVA = "0x11CC640", Offset = "0x11CB640", VA = "0x1811CC640")] get { return null; } } /// Gets the object that corresponds to the XML URI (http://www.w3.org/XML/1998/namespace). /// The that corresponds to the XML URI (http://www.w3.org/XML/1998/namespace). // Token: 0x17000006 RID: 6 // (get) Token: 0x06000016 RID: 22 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x17000006")] public static XNamespace Xml { [Token(Token = "0x6000016")] [Address(RVA = "0x11CC690", Offset = "0x11CB690", VA = "0x1811CC690")] get { return null; } } /// Gets the object that corresponds to the xmlns URI (http://www.w3.org/2000/xmlns/). /// The that corresponds to the xmlns URI (http://www.w3.org/2000/xmlns/). // Token: 0x17000007 RID: 7 // (get) Token: 0x06000017 RID: 23 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x17000007")] public static XNamespace Xmlns { [Token(Token = "0x6000017")] [Address(RVA = "0x11CC6E0", Offset = "0x11CB6E0", VA = "0x1811CC6E0")] get { return null; } } /// Gets an for the specified Uniform Resource Identifier (URI). /// A that contains a namespace URI. /// An created from the specified URI. // Token: 0x06000018 RID: 24 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x6000018")] [Address(RVA = "0x11CC1B0", Offset = "0x11CB1B0", VA = "0x1811CC1B0")] public static XNamespace Get(string namespaceName) { return null; } /// Converts a string containing a Uniform Resource Identifier (URI) to an . /// A that contains the namespace URI. /// An constructed from the URI string. // Token: 0x06000019 RID: 25 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x6000019")] [Address(RVA = "0x11CC730", Offset = "0x11CB730", VA = "0x1811CC730")] [CLSCompliant(false)] public static implicit operator XNamespace(string namespaceName) { return null; } /// Determines whether the specified is equal to the current . /// The to compare to the current . /// A that indicates whether the specified is equal to the current . // Token: 0x0600001A RID: 26 RVA: 0x000020B8 File Offset: 0x000002B8 [Token(Token = "0x600001A")] [Address(RVA = "0x52DD60", Offset = "0x52CD60", VA = "0x18052DD60", Slot = "0")] public override bool Equals(object obj) { return default(bool); } /// Gets a hash code for this . /// An that contains the hash code for the . // Token: 0x0600001B RID: 27 RVA: 0x000020D0 File Offset: 0x000002D0 [Token(Token = "0x600001B")] [Address(RVA = "0x411540", Offset = "0x410540", VA = "0x180411540", Slot = "2")] public override int GetHashCode() { return 0; } /// Returns a value indicating whether two instances of are equal. /// The first to compare. /// The second to compare. /// A that indicates whether and are equal. // Token: 0x0600001C RID: 28 RVA: 0x000020E8 File Offset: 0x000002E8 [Token(Token = "0x600001C")] [Address(RVA = "0x52DD60", Offset = "0x52CD60", VA = "0x18052DD60")] public static bool operator ==(XNamespace left, XNamespace right) { return default(bool); } /// Returns a value indicating whether two instances of are not equal. /// The first to compare. /// The second to compare. /// A that indicates whether and are not equal. // Token: 0x0600001D RID: 29 RVA: 0x00002100 File Offset: 0x00000300 [Token(Token = "0x600001D")] [Address(RVA = "0x594EE0", Offset = "0x593EE0", VA = "0x180594EE0")] public static bool operator !=(XNamespace left, XNamespace right) { return default(bool); } // Token: 0x0600001E RID: 30 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x600001E")] [Address(RVA = "0x11CBFB0", Offset = "0x11CAFB0", VA = "0x1811CBFB0")] internal XName GetName(string localName, int index, int count) { return null; } // Token: 0x0600001F RID: 31 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x600001F")] [Address(RVA = "0x11CC220", Offset = "0x11CB220", VA = "0x1811CC220")] internal static XNamespace Get(string namespaceName, int index, int count) { return null; } // Token: 0x06000020 RID: 32 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x6000020")] [Address(RVA = "0xA40C50", Offset = "0xA3FC50", VA = "0x180A40C50")] private static string ExtractLocalName(XName n) { return null; } // Token: 0x06000021 RID: 33 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x6000021")] [Address(RVA = "0x11CBF30", Offset = "0x11CAF30", VA = "0x1811CBF30")] private static string ExtractNamespace(WeakReference r) { return null; } // Token: 0x06000022 RID: 34 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x6000022")] [Address(RVA = "0x11CBE40", Offset = "0x11CAE40", VA = "0x1811CBE40")] private static XNamespace EnsureNamespace(ref WeakReference refNmsp, string namespaceName) { return null; } // Token: 0x04000005 RID: 5 [Token(Token = "0x4000005")] private static XHashtable namespaces; // Token: 0x04000006 RID: 6 [Token(Token = "0x4000006")] private static WeakReference refNone; // Token: 0x04000007 RID: 7 [Token(Token = "0x4000007")] private static WeakReference refXml; // Token: 0x04000008 RID: 8 [Token(Token = "0x4000008")] private static WeakReference refXmlns; // Token: 0x04000009 RID: 9 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000009")] private string namespaceName; // Token: 0x0400000A RID: 10 [FieldOffset(Offset = "0x18")] [Token(Token = "0x400000A")] private int hashCode; // Token: 0x0400000B RID: 11 [FieldOffset(Offset = "0x20")] [Token(Token = "0x400000B")] private XHashtable names; } }