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: 0x02000051 RID: 81 [Token(Token = "0x2000051")] 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: 0x060003B9 RID: 953 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x60003B9")] [Address(RVA = "0x5DFD10", Offset = "0x5DEB10", VA = "0x1805DFD10")] 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: 0x1700017E RID: 382 // (get) Token: 0x060003BA RID: 954 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700017E")] public override string Name { [Token(Token = "0x60003BA")] [Address(RVA = "0x5DFD50", Offset = "0x5DEB50", VA = "0x1805DFD50", 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: 0x1700017F RID: 383 // (get) Token: 0x060003BB RID: 955 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700017F")] public override string LocalName { [Token(Token = "0x60003BB")] [Address(RVA = "0x466260", Offset = "0x465060", VA = "0x180466260", Slot = "31")] 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: 0x17000180 RID: 384 // (get) Token: 0x060003BC RID: 956 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x060003BD RID: 957 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000180")] public override string Value { [Token(Token = "0x60003BC")] [Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0", Slot = "7")] get { return null; } [Token(Token = "0x60003BD")] [Address(RVA = "0x5DFE50", Offset = "0x5DEC50", VA = "0x1805DFE50", 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: 0x17000181 RID: 385 // (set) Token: 0x060003BE RID: 958 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000181")] public string Data { [Token(Token = "0x60003BE")] [Address(RVA = "0x5DFDA0", Offset = "0x5DEBA0", VA = "0x1805DFDA0")] 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: 0x17000182 RID: 386 // (get) Token: 0x060003BF RID: 959 RVA: 0x00002050 File Offset: 0x00000250 // (set) Token: 0x060003C0 RID: 960 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x17000182")] public override string InnerText { [Token(Token = "0x60003BF")] [Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0", Slot = "33")] get { return null; } [Token(Token = "0x60003C0")] [Address(RVA = "0x5DFE50", Offset = "0x5DEC50", VA = "0x1805DFE50", Slot = "34")] set { } } /// Gets the type of the current node. /// For nodes, this value is XmlNodeType.ProcessingInstruction. // Token: 0x17000183 RID: 387 // (get) Token: 0x060003C1 RID: 961 RVA: 0x00003570 File Offset: 0x00001770 [Token(Token = "0x17000183")] public override XmlNodeType NodeType { [Token(Token = "0x60003C1")] [Address(RVA = "0x53BA40", Offset = "0x53A840", VA = "0x18053BA40", 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: 0x060003C2 RID: 962 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60003C2")] [Address(RVA = "0x5DFCC0", Offset = "0x5DEAC0", VA = "0x1805DFCC0", Slot = "27")] public override XmlNode CloneNode(bool deep) { return null; } // Token: 0x0400019E RID: 414 [FieldOffset(Offset = "0x20")] [Token(Token = "0x400019E")] private string target; // Token: 0x0400019F RID: 415 [FieldOffset(Offset = "0x28")] [Token(Token = "0x400019F")] private string data; } }