using System; using Cpp2IlInjected; namespace System.Xml { /// Represents a processing instruction, which XML defines to keep processor-specific information in the text of the document. // Token: 0x020000C4 RID: 196 [Token(Token = "0x20000C4")] public class XmlProcessingInstruction : XmlLinkedNode { /// Initializes a new instance of the class. /// The target of the processing instruction; see the property. /// The content of the instruction; see the property. /// The parent XML document. // Token: 0x06000A30 RID: 2608 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000A30")] [Address(RVA = "0x4B3010", Offset = "0x4B2010", VA = "0x1804B3010")] protected internal XmlProcessingInstruction(string target, string data, XmlDocument doc) { } /// Gets the qualified name of the node. /// For processing instruction nodes, this property returns the target of the processing instruction. // Token: 0x170002E5 RID: 741 // (get) Token: 0x06000A31 RID: 2609 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170002E5")] public override string Name { [Token(Token = "0x6000A31")] [Address(RVA = "0x4B3070", Offset = "0x4B2070", VA = "0x1804B3070", Slot = "6")] get { return null; } } /// Gets the local name of the node. /// For processing instruction nodes, this property returns the target of the processing instruction. // Token: 0x170002E6 RID: 742 // (get) Token: 0x06000A32 RID: 2610 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x170002E6")] public override string LocalName { [Token(Token = "0x6000A32")] [Address(RVA = "0x4B3050", Offset = "0x4B2050", VA = "0x1804B3050", Slot = "36")] get { return null; } } /// Gets or sets the value of the node. /// The entire content of the processing instruction, excluding the target. /// Node is read-only. // Token: 0x170002E7 RID: 743 // (get) Token: 0x06000A33 RID: 2611 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x06000A34 RID: 2612 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x170002E7")] public override string Value { [Token(Token = "0x6000A33")] [Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0", Slot = "7")] get { return null; } [Token(Token = "0x6000A34")] [Address(RVA = "0x4B3180", Offset = "0x4B2180", VA = "0x1804B3180", Slot = "8")] set { } } /// Gets or sets the content of the processing instruction, excluding the target. /// The content of the processing instruction, excluding the target. // Token: 0x170002E8 RID: 744 // (set) Token: 0x06000A35 RID: 2613 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x170002E8")] public string Data { [Token(Token = "0x6000A35")] [Address(RVA = "0x4B30D0", Offset = "0x4B20D0", VA = "0x1804B30D0")] set { } } /// Gets or sets the concatenated values of the node and all its children. /// The concatenated values of the node and all its children. // Token: 0x170002E9 RID: 745 // (get) Token: 0x06000A36 RID: 2614 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x06000A37 RID: 2615 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x170002E9")] public override string InnerText { [Token(Token = "0x6000A36")] [Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0", Slot = "38")] get { return null; } [Token(Token = "0x6000A37")] [Address(RVA = "0x4B3180", Offset = "0x4B2180", VA = "0x1804B3180", Slot = "39")] set { } } /// Gets the type of the current node. /// For nodes, this value is XmlNodeType.ProcessingInstruction. // Token: 0x170002EA RID: 746 // (get) Token: 0x06000A38 RID: 2616 RVA: 0x000059B8 File Offset: 0x00003BB8 [Token(Token = "0x170002EA")] public override XmlNodeType NodeType { [Token(Token = "0x6000A38")] [Address(RVA = "0x4B30C0", Offset = "0x4B20C0", VA = "0x1804B30C0", Slot = "9")] get { return XmlNodeType.None; } } /// 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: 0x06000A39 RID: 2617 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000A39")] [Address(RVA = "0x4B2F80", Offset = "0x4B1F80", VA = "0x1804B2F80", Slot = "31")] public override XmlNode CloneNode(bool deep) { return null; } /// Saves the node to the specified . /// The to which you want to save. // Token: 0x06000A3A RID: 2618 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000A3A")] [Address(RVA = "0x4B2FD0", Offset = "0x4B1FD0", VA = "0x1804B2FD0", Slot = "43")] public override void WriteTo(XmlWriter w) { } /// Saves all the children of the node to the specified . Because ProcessingInstruction nodes do not have children, this method has no effect. /// The to which you want to save. // Token: 0x06000A3B RID: 2619 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000A3B")] [Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "44")] public override void WriteContentTo(XmlWriter w) { } // Token: 0x0400055F RID: 1375 [FieldOffset(Offset = "0x20")] [Token(Token = "0x400055F")] private string target; // Token: 0x04000560 RID: 1376 [FieldOffset(Offset = "0x28")] [Token(Token = "0x4000560")] private string data; } }