using System; using Cpp2IlInjected; namespace System.Xml { /// Represents a CDATA section. // Token: 0x02000037 RID: 55 [Token(Token = "0x2000037")] public class XmlCDataSection : XmlCharacterData { /// Initializes a new instance of the class. /// /// that contains character data. /// /// object. // Token: 0x06000247 RID: 583 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000247")] [Address(RVA = "0x461020", Offset = "0x45FE20", VA = "0x180461020")] protected internal XmlCDataSection(string data, XmlDocument doc) { } /// Gets the qualified name of the node. /// For CDATA nodes, the name is . // Token: 0x170000E2 RID: 226 // (get) Token: 0x06000248 RID: 584 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170000E2")] public override string Name { [Token(Token = "0x6000248")] [Address(RVA = "0x461060", Offset = "0x45FE60", VA = "0x180461060", Slot = "6")] get { return null; } } /// Gets the local name of the node. /// For CDATA nodes, the local name is . // Token: 0x170000E3 RID: 227 // (get) Token: 0x06000249 RID: 585 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170000E3")] public override string LocalName { [Token(Token = "0x6000249")] [Address(RVA = "0x461060", Offset = "0x45FE60", VA = "0x180461060", Slot = "31")] get { return null; } } /// Gets the type of the current node. /// The node type. For CDATA nodes, the value is XmlNodeType.CDATA. // Token: 0x170000E4 RID: 228 // (get) Token: 0x0600024A RID: 586 RVA: 0x00002F28 File Offset: 0x00001128 [Token(Token = "0x170000E4")] public override XmlNodeType NodeType { [Token(Token = "0x600024A")] [Address(RVA = "0x4101C0", Offset = "0x40EFC0", VA = "0x1804101C0", 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: 0x170000E5 RID: 229 // (get) Token: 0x0600024B RID: 587 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170000E5")] public override XmlNode ParentNode { [Token(Token = "0x600024B")] [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. Because CDATA nodes do not have children, regardless of the parameter setting, the cloned node will always include the data content. /// The cloned node. // Token: 0x0600024C RID: 588 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600024C")] [Address(RVA = "0x460FC0", Offset = "0x45FDC0", VA = "0x180460FC0", Slot = "27")] public override XmlNode CloneNode(bool deep) { return null; } // Token: 0x170000E6 RID: 230 // (get) Token: 0x0600024D RID: 589 RVA: 0x00002F40 File Offset: 0x00001140 [Token(Token = "0x170000E6")] internal override bool IsText { [Token(Token = "0x600024D")] [Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "45")] get { return default(bool); } } } }