using System; using System.Runtime.Serialization; using Cpp2IlInjected; namespace System.Xml.Linq { /// Represents a name of an XML element or attribute. // Token: 0x02000002 RID: 2 [Token(Token = "0x2000002")] [KnownType(typeof(NameSerializer))] [Serializable] public sealed class XName : IEquatable, ISerializable { // Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000001")] [Address(RVA = "0x11CBD40", Offset = "0x11CAD40", VA = "0x1811CBD40")] internal XName(XNamespace ns, string localName) { } /// Gets the local (unqualified) part of the name. /// A that contains the local (unqualified) part of the name. // Token: 0x17000001 RID: 1 // (get) Token: 0x06000002 RID: 2 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x17000001")] public string LocalName { [Token(Token = "0x6000002")] [Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")] get { return null; } } /// Gets the namespace part of the fully qualified name. /// An that contains the namespace part of the name. // Token: 0x17000002 RID: 2 // (get) Token: 0x06000003 RID: 3 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x17000002")] public XNamespace Namespace { [Token(Token = "0x6000003")] [Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")] get { return null; } } /// Returns the URI of the for this . /// The URI of the for this . // Token: 0x17000003 RID: 3 // (get) Token: 0x06000004 RID: 4 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x17000003")] public string NamespaceName { [Token(Token = "0x6000004")] [Address(RVA = "0x4831B0", Offset = "0x4821B0", VA = "0x1804831B0")] get { return null; } } /// Returns the expanded XML name in the format {namespace}localname. /// A that contains the expanded XML name in the format {namespace}localname. // Token: 0x06000005 RID: 5 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x6000005")] [Address(RVA = "0x11CBCC0", Offset = "0x11CACC0", VA = "0x1811CBCC0", Slot = "3")] public override string ToString() { return null; } /// Gets an object from an expanded name. /// A that contains an expanded XML name in the format {namespace}localname. /// An object constructed from the expanded name. // Token: 0x06000006 RID: 6 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x6000006")] [Address(RVA = "0x11CB9C0", Offset = "0x11CA9C0", VA = "0x1811CB9C0")] public static XName Get(string expandedName) { return null; } /// Converts a string formatted as an expanded XML name (that is,{namespace}localname) to an object. /// A string that contains an expanded XML name in the format {namespace}localname. /// An object constructed from the expanded name. // Token: 0x06000007 RID: 7 RVA: 0x00002052 File Offset: 0x00000252 [Token(Token = "0x6000007")] [Address(RVA = "0x11CBE30", Offset = "0x11CAE30", VA = "0x1811CBE30")] [CLSCompliant(false)] public static implicit operator XName(string expandedName) { return null; } /// Determines whether the specified is equal to this . /// The to compare to the current . /// /// if the specified is equal to the current ; otherwise . // Token: 0x06000008 RID: 8 RVA: 0x00002058 File Offset: 0x00000258 [Token(Token = "0x6000008")] [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: 0x06000009 RID: 9 RVA: 0x00002070 File Offset: 0x00000270 [Token(Token = "0x6000009")] [Address(RVA = "0x470B70", Offset = "0x46FB70", VA = "0x180470B70", 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. /// /// if and are equal; otherwise . // Token: 0x0600000A RID: 10 RVA: 0x00002088 File Offset: 0x00000288 [Token(Token = "0x600000A")] [Address(RVA = "0x52DD60", Offset = "0x52CD60", VA = "0x18052DD60")] public static bool operator ==(XName left, XName right) { return default(bool); } // Token: 0x0600000B RID: 11 RVA: 0x000020A0 File Offset: 0x000002A0 [Token(Token = "0x600000B")] [Address(RVA = "0x52DD60", Offset = "0x52CD60", VA = "0x18052DD60", Slot = "4")] bool IEquatable.Equals(XName other) { return default(bool); } /// Populates a with the data required to serialize the target object. /// The to populate with data. /// The destination (see ) for this serialization. // Token: 0x0600000C RID: 12 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600000C")] [Address(RVA = "0x11CBBF0", Offset = "0x11CABF0", VA = "0x1811CBBF0", Slot = "5")] void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context) { } // Token: 0x0600000D RID: 13 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600000D")] [Address(RVA = "0x11CBE00", Offset = "0x11CAE00", VA = "0x1811CBE00")] internal XName() { } // Token: 0x04000001 RID: 1 [FieldOffset(Offset = "0x10")] [Token(Token = "0x4000001")] private XNamespace ns; // Token: 0x04000002 RID: 2 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4000002")] private string localName; // Token: 0x04000003 RID: 3 [FieldOffset(Offset = "0x20")] [Token(Token = "0x4000003")] private int hashCode; } }