using System; using Cpp2IlInjected; namespace System.Xml { /// Represents the text content of an element or attribute. // Token: 0x02000053 RID: 83 [Token(Token = "0x2000053")] public class XmlText : XmlCharacterData { // Token: 0x060003CC RID: 972 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60003CC")] [Address(RVA = "0x5F61B0", Offset = "0x5F4FB0", VA = "0x1805F61B0")] internal XmlText(string strData) { } /// Initializes a new instance of the class. /// The content of the node; see the property. /// The parent XML document. // Token: 0x060003CD RID: 973 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60003CD")] [Address(RVA = "0x5F61A0", Offset = "0x5F4FA0", VA = "0x1805F61A0")] protected internal XmlText(string strData, XmlDocument doc) { } /// Gets the qualified name of the node. /// For text nodes, this property returns . // Token: 0x1700018A RID: 394 // (get) Token: 0x060003CE RID: 974 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700018A")] public override string Name { [Token(Token = "0x60003CE")] [Address(RVA = "0x5F61C0", Offset = "0x5F4FC0", VA = "0x1805F61C0", Slot = "6")] get { return null; } } /// Gets the local name of the node. /// For text nodes, this property returns . // Token: 0x1700018B RID: 395 // (get) Token: 0x060003CF RID: 975 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700018B")] public override string LocalName { [Token(Token = "0x60003CF")] [Address(RVA = "0x5F61C0", Offset = "0x5F4FC0", VA = "0x1805F61C0", Slot = "31")] get { return null; } } /// Gets the type of the current node. /// For text nodes, this value is XmlNodeType.Text. // Token: 0x1700018C RID: 396 // (get) Token: 0x060003D0 RID: 976 RVA: 0x000035B8 File Offset: 0x000017B8 [Token(Token = "0x1700018C")] public override XmlNodeType NodeType { [Token(Token = "0x60003D0")] [Address(RVA = "0x53A4A0", Offset = "0x5392A0", VA = "0x18053A4A0", Slot = "9")] get { return XmlNodeType.None; } } /// Gets the parent of this node (for nodes that can have parents). /// The that is the parent of the current node. If a node has just been created and not yet added to the tree, or if it has been removed from the tree, the parent is . For all other nodes, the value returned depends on the of the node. The following table describes the possible return values for the property. // Token: 0x1700018D RID: 397 // (get) Token: 0x060003D1 RID: 977 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700018D")] public override XmlNode ParentNode { [Token(Token = "0x60003D1")] [Address(RVA = "0x461090", Offset = "0x45FE90", VA = "0x180461090", Slot = "10")] get { return null; } } /// Creates a duplicate of this node. /// /// to recursively clone the subtree under the specified node; to clone only the node itself. /// The cloned node. // Token: 0x060003D2 RID: 978 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60003D2")] [Address(RVA = "0x5F6140", Offset = "0x5F4F40", VA = "0x1805F6140", Slot = "27")] public override XmlNode CloneNode(bool deep) { return null; } /// Gets or sets the value of the node. /// The content of the text node. // Token: 0x1700018E RID: 398 // (get) Token: 0x060003D3 RID: 979 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x060003D4 RID: 980 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x1700018E")] public override string Value { [Token(Token = "0x60003D3")] [Address(RVA = "0x461C80", Offset = "0x460A80", VA = "0x180461C80", Slot = "7")] get { return null; } [Token(Token = "0x60003D4")] [Address(RVA = "0x5F61F0", Offset = "0x5F4FF0", VA = "0x1805F61F0", Slot = "8")] set { } } // Token: 0x1700018F RID: 399 // (get) Token: 0x060003D5 RID: 981 RVA: 0x000035D0 File Offset: 0x000017D0 [Token(Token = "0x1700018F")] internal override bool IsText { [Token(Token = "0x60003D5")] [Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "45")] get { return default(bool); } } } }