using System; using System.Xml.Schema; using Cpp2IlInjected; namespace System.Xml { /// Represents an attribute. Valid and default values for the attribute are defined in a document type definition (DTD) or schema. // Token: 0x020000A5 RID: 165 [Token(Token = "0x20000A5")] public class XmlAttribute : XmlNode { // Token: 0x060007E3 RID: 2019 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60007E3")] [Address(RVA = "0x67F620", Offset = "0x67E620", VA = "0x18067F620")] internal XmlAttribute(XmlName name, XmlDocument doc) { } // Token: 0x17000201 RID: 513 // (get) Token: 0x060007E4 RID: 2020 RVA: 0x00004E00 File Offset: 0x00003000 [Token(Token = "0x17000201")] internal int LocalNameHash { [Token(Token = "0x60007E4")] [Address(RVA = "0x67F7B0", Offset = "0x67E7B0", VA = "0x18067F7B0")] get { return 0; } } /// Initializes a new instance of the class. /// The namespace prefix. /// The local name of the attribute. /// The namespace uniform resource identifier (URI). /// The parent XML document. // Token: 0x060007E5 RID: 2021 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60007E5")] [Address(RVA = "0x67F5D0", Offset = "0x67E5D0", VA = "0x18067F5D0")] protected internal XmlAttribute(string prefix, string localName, string namespaceURI, XmlDocument doc) { } // Token: 0x17000202 RID: 514 // (get) Token: 0x060007E6 RID: 2022 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x060007E7 RID: 2023 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000202")] internal XmlName XmlName { [Token(Token = "0x60007E6")] [Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")] get { return null; } [Token(Token = "0x60007E7")] [Address(RVA = "0x4157F0", Offset = "0x4147F0", VA = "0x1804157F0")] set { } } /// Creates a duplicate of this node. /// /// to recursively clone the subtree under the specified node; to clone only the node itself /// The duplicate node. // Token: 0x060007E8 RID: 2024 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60007E8")] [Address(RVA = "0x67EEA0", Offset = "0x67DEA0", VA = "0x18067EEA0", Slot = "31")] public override XmlNode CloneNode(bool deep) { return null; } /// Gets the parent of this node. For nodes, this property always returns . /// For nodes, this property always returns . // Token: 0x17000203 RID: 515 // (get) Token: 0x060007E9 RID: 2025 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000203")] public override XmlNode ParentNode { [Token(Token = "0x60007E9")] [Address(RVA = "0x4242C0", Offset = "0x4232C0", VA = "0x1804242C0", Slot = "10")] get { return null; } } /// Gets the qualified name of the node. /// The qualified name of the attribute node. // Token: 0x17000204 RID: 516 // (get) Token: 0x060007EA RID: 2026 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000204")] public override string Name { [Token(Token = "0x60007EA")] [Address(RVA = "0x67F7F0", Offset = "0x67E7F0", VA = "0x18067F7F0", Slot = "6")] get { return null; } } /// Gets the local name of the node. /// The name of the attribute node with the prefix removed. In the following example <book bk:genre= 'novel'>, the of the attribute is . // Token: 0x17000205 RID: 517 // (get) Token: 0x060007EB RID: 2027 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000205")] public override string LocalName { [Token(Token = "0x60007EB")] [Address(RVA = "0x67F7D0", Offset = "0x67E7D0", VA = "0x18067F7D0", Slot = "36")] get { return null; } } /// Gets the namespace URI of this node. /// The namespace URI of this node. If the attribute is not explicitly given a namespace, this property returns String.Empty. // Token: 0x17000206 RID: 518 // (get) Token: 0x060007EC RID: 2028 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000206")] public override string NamespaceURI { [Token(Token = "0x60007EC")] [Address(RVA = "0x67F810", Offset = "0x67E810", VA = "0x18067F810", Slot = "33")] get { return null; } } /// Gets or sets the namespace prefix of this node. /// The namespace prefix of this node. If there is no prefix, this property returns String.Empty. /// This node is read-only. /// The specified prefix contains an invalid character.The specified prefix is malformed.The namespaceURI of this node is .The specified prefix is "xml", and the namespaceURI of this node is different from "http://www.w3.org/XML/1998/namespace".This node is an attribute, the specified prefix is "xmlns", and the namespaceURI of this node is different from "http://www.w3.org/2000/xmlns/".This node is an attribute, and the qualifiedName of this node is "xmlns" [Namespaces]. // Token: 0x17000207 RID: 519 // (get) Token: 0x060007ED RID: 2029 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x060007EE RID: 2030 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000207")] public override string Prefix { [Token(Token = "0x60007ED")] [Address(RVA = "0x5F2DD0", Offset = "0x5F1DD0", VA = "0x1805F2DD0", Slot = "34")] get { return null; } [Token(Token = "0x60007EE")] [Address(RVA = "0x67FAE0", Offset = "0x67EAE0", VA = "0x18067FAE0", Slot = "35")] set { } } /// Gets the type of the current node. /// The node type for nodes is XmlNodeType.Attribute. // Token: 0x17000208 RID: 520 // (get) Token: 0x060007EF RID: 2031 RVA: 0x00004E18 File Offset: 0x00003018 [Token(Token = "0x17000208")] public override XmlNodeType NodeType { [Token(Token = "0x60007EF")] [Address(RVA = "0x4E86A0", Offset = "0x4E76A0", VA = "0x1804E86A0", Slot = "9")] get { return XmlNodeType.None; } } /// Gets the to which this node belongs. /// An XML document to which this node belongs. // Token: 0x17000209 RID: 521 // (get) Token: 0x060007F0 RID: 2032 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000209")] public override XmlDocument OwnerDocument { [Token(Token = "0x60007F0")] [Address(RVA = "0x67F830", Offset = "0x67E830", VA = "0x18067F830", Slot = "15")] get { return null; } } /// Gets or sets the value of the node. /// The value returned depends on the of the node. For nodes, this property is the value of attribute. /// The node is read-only and a set operation is called. // Token: 0x1700020A RID: 522 // (get) Token: 0x060007F1 RID: 2033 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x060007F2 RID: 2034 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x1700020A")] public override string Value { [Token(Token = "0x60007F1")] [Address(RVA = "0x67F8D0", Offset = "0x67E8D0", VA = "0x18067F8D0", Slot = "7")] get { return null; } [Token(Token = "0x60007F2")] [Address(RVA = "0x67FBA0", Offset = "0x67EBA0", VA = "0x18067FBA0", Slot = "8")] set { } } /// Gets the post-schema-validation-infoset that has been assigned to this node as a result of schema validation. /// An containing the post-schema-validation-infoset of this node. // Token: 0x1700020B RID: 523 // (get) Token: 0x060007F3 RID: 2035 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700020B")] public override IXmlSchemaInfo SchemaInfo { [Token(Token = "0x60007F3")] [Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0", Slot = "41")] get { return null; } } /// Sets the concatenated values of the node and all its children. /// The concatenated values of the node and all its children. For attribute nodes, this property has the same functionality as the property. // Token: 0x1700020C RID: 524 // (set) Token: 0x060007F4 RID: 2036 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x1700020C")] public override string InnerText { [Token(Token = "0x60007F4")] [Address(RVA = "0x67F9E0", Offset = "0x67E9E0", VA = "0x18067F9E0", Slot = "39")] set { } } // Token: 0x060007F5 RID: 2037 RVA: 0x00004E30 File Offset: 0x00003030 [Token(Token = "0x60007F5")] [Address(RVA = "0x67F0D0", Offset = "0x67E0D0", VA = "0x18067F0D0")] internal bool PrepareOwnerElementInElementIdAttrMap() { return default(bool); } // Token: 0x060007F6 RID: 2038 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60007F6")] [Address(RVA = "0x67F360", Offset = "0x67E360", VA = "0x18067F360")] internal void ResetOwnerElementInElementIdAttrMap(string oldInnerText) { } // Token: 0x1700020D RID: 525 // (get) Token: 0x060007F7 RID: 2039 RVA: 0x00004E48 File Offset: 0x00003048 [Token(Token = "0x1700020D")] internal override bool IsContainer { [Token(Token = "0x60007F7")] [Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "18")] get { return default(bool); } } // Token: 0x060007F8 RID: 2040 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60007F8")] [Address(RVA = "0x67EC90", Offset = "0x67DC90", VA = "0x18067EC90", Slot = "26")] internal override XmlNode AppendChildForLoad(XmlNode newChild, XmlDocument doc) { return null; } // Token: 0x1700020E RID: 526 // (get) Token: 0x060007F9 RID: 2041 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x060007FA RID: 2042 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x1700020E")] internal override XmlLinkedNode LastNode { [Token(Token = "0x60007F9")] [Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0", Slot = "19")] get { return null; } [Token(Token = "0x60007FA")] [Address(RVA = "0x415810", Offset = "0x414810", VA = "0x180415810", Slot = "20")] set { } } // Token: 0x060007FB RID: 2043 RVA: 0x00004E60 File Offset: 0x00003060 [Token(Token = "0x60007FB")] [Address(RVA = "0x67F0C0", Offset = "0x67E0C0", VA = "0x18067F0C0", Slot = "27")] internal override bool IsValidChildType(XmlNodeType type) { return default(bool); } /// Gets a value indicating whether the attribute value was explicitly set. /// /// if this attribute was explicitly given a value in the original instance document; otherwise, . A value of indicates that the value of the attribute came from the DTD. // Token: 0x1700020F RID: 527 // (get) Token: 0x060007FC RID: 2044 RVA: 0x00004E78 File Offset: 0x00003078 [Token(Token = "0x1700020F")] public virtual bool Specified { [Token(Token = "0x60007FC")] [Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "56")] get { return default(bool); } } /// Inserts the specified node immediately before the specified reference node. /// The to insert. /// The that is the reference node. The is placed before this node. /// The inserted. /// The current node is of a type that does not allow child nodes of the type of the node.The is an ancestor of this node. /// The was created from a different document than the one that created this node.The is not a child of this node.This node is read-only. // Token: 0x060007FD RID: 2045 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60007FD")] [Address(RVA = "0x67F020", Offset = "0x67E020", VA = "0x18067F020", Slot = "21")] public override XmlNode InsertBefore(XmlNode newChild, XmlNode refChild) { return null; } /// Inserts the specified node immediately after the specified reference node. /// The to insert. /// The that is the reference node. The is placed after the . /// The inserted. /// This node is of a type that does not allow child nodes of the type of the node.The is an ancestor of this node. /// The was created from a different document than the one that created this node.The is not a child of this node.This node is read-only. // Token: 0x060007FE RID: 2046 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60007FE")] [Address(RVA = "0x67EF80", Offset = "0x67DF80", VA = "0x18067EF80", Slot = "22")] public override XmlNode InsertAfter(XmlNode newChild, XmlNode refChild) { return null; } /// Removes the specified child node. /// The to remove. /// The removed. /// The is not a child of this node. Or this node is read-only. // Token: 0x060007FF RID: 2047 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60007FF")] [Address(RVA = "0x67F2E0", Offset = "0x67E2E0", VA = "0x18067F2E0", Slot = "23")] public override XmlNode RemoveChild(XmlNode oldChild) { return null; } /// Adds the specified node to the beginning of the list of child nodes for this node. /// The to add. If it is an , the entire contents of the document fragment are moved into the child list of this node. /// The added. /// This node is of a type that does not allow child nodes of the type of the node.The is an ancestor of this node. /// The was created from a different document than the one that created this node.This node is read-only. // Token: 0x06000800 RID: 2048 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000800")] [Address(RVA = "0x67F260", Offset = "0x67E260", VA = "0x18067F260", Slot = "24")] public override XmlNode PrependChild(XmlNode newChild) { return null; } /// Adds the specified node to the end of the list of child nodes, of this node. /// The to add. /// The added. /// This node is of a type that does not allow child nodes of the type of the node.The is an ancestor of this node. /// The was created from a different document than the one that created this node.This node is read-only. // Token: 0x06000801 RID: 2049 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000801")] [Address(RVA = "0x67EE20", Offset = "0x67DE20", VA = "0x18067EE20", Slot = "25")] public override XmlNode AppendChild(XmlNode newChild) { return null; } /// Gets the to which the attribute belongs. /// The that the attribute belongs to or if this attribute is not part of an . // Token: 0x17000210 RID: 528 // (get) Token: 0x06000802 RID: 2050 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000210")] public virtual XmlElement OwnerElement { [Token(Token = "0x6000802")] [Address(RVA = "0x67F850", Offset = "0x67E850", VA = "0x18067F850", Slot = "57")] get { return null; } } /// Sets the value of the attribute. /// The attribute value. /// The XML specified when setting this property is not well-formed. // Token: 0x17000211 RID: 529 // (set) Token: 0x06000803 RID: 2051 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000211")] public override string InnerXml { [Token(Token = "0x6000803")] [Address(RVA = "0x67FA50", Offset = "0x67EA50", VA = "0x18067FA50", Slot = "40")] set { } } /// Saves the node to the specified . /// The to which you want to save. // Token: 0x06000804 RID: 2052 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000804")] [Address(RVA = "0x67F500", Offset = "0x67E500", VA = "0x18067F500", Slot = "43")] public override void WriteTo(XmlWriter w) { } /// Saves all the children of the node to the specified . /// The to which you want to save. // Token: 0x06000805 RID: 2053 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000805")] [Address(RVA = "0x67F490", Offset = "0x67E490", VA = "0x18067F490", Slot = "44")] public override void WriteContentTo(XmlWriter w) { } /// Gets the base Uniform Resource Identifier (URI) of the node. /// The location from which the node was loaded or String.Empty if the node has no base URI. Attribute nodes have the same base URI as their owner element. If an attribute node does not have an owner element, returns String.Empty. // Token: 0x17000212 RID: 530 // (get) Token: 0x06000806 RID: 2054 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000212")] public override string BaseURI { [Token(Token = "0x6000806")] [Address(RVA = "0x67F720", Offset = "0x67E720", VA = "0x18067F720", Slot = "42")] get { return null; } } // Token: 0x06000807 RID: 2055 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000807")] [Address(RVA = "0x415800", Offset = "0x414800", VA = "0x180415800", Slot = "47")] internal override void SetParent(XmlNode node) { } // Token: 0x17000213 RID: 531 // (get) Token: 0x06000808 RID: 2056 RVA: 0x00004E90 File Offset: 0x00003090 [Token(Token = "0x17000213")] internal override XmlSpace XmlSpace { [Token(Token = "0x6000808")] [Address(RVA = "0x67F980", Offset = "0x67E980", VA = "0x18067F980", Slot = "53")] get { return XmlSpace.None; } } // Token: 0x17000214 RID: 532 // (get) Token: 0x06000809 RID: 2057 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000214")] internal override string XmlLang { [Token(Token = "0x6000809")] [Address(RVA = "0x67F8F0", Offset = "0x67E8F0", VA = "0x18067F8F0", Slot = "54")] get { return null; } } // Token: 0x040004D4 RID: 1236 [FieldOffset(Offset = "0x18")] [Token(Token = "0x40004D4")] private XmlName name; // Token: 0x040004D5 RID: 1237 [FieldOffset(Offset = "0x20")] [Token(Token = "0x40004D5")] private XmlLinkedNode lastChild; } }