Files
27Aug2021-Cpp2IL-Dump/System.Xml/System/Xml/XmlProcessingInstruction.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

165 lines
6.3 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Represents a processing instruction, which XML defines to keep processor-specific information in the text of the document.</summary>
// Token: 0x020000C4 RID: 196
[Token(Token = "0x20000C4")]
public class XmlProcessingInstruction : XmlLinkedNode
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlProcessingInstruction" /> class.</summary>
/// <param name="target">The target of the processing instruction; see the <see cref="P:System.Xml.XmlProcessingInstruction.Target" /> property.</param>
/// <param name="data">The content of the instruction; see the <see cref="P:System.Xml.XmlProcessingInstruction.Data" /> property.</param>
/// <param name="doc">The parent XML document.</param>
// 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)
{
}
/// <summary>Gets the qualified name of the node.</summary>
/// <returns>For processing instruction nodes, this property returns the target of the processing instruction.</returns>
// 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;
}
}
/// <summary>Gets the local name of the node.</summary>
/// <returns>For processing instruction nodes, this property returns the target of the processing instruction.</returns>
// 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;
}
}
/// <summary>Gets or sets the value of the node.</summary>
/// <returns>The entire content of the processing instruction, excluding the target.</returns>
/// <exception cref="T:System.ArgumentException">Node is read-only. </exception>
// 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
{
}
}
/// <summary>Gets or sets the content of the processing instruction, excluding the target.</summary>
/// <returns>The content of the processing instruction, excluding the target.</returns>
// 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
{
}
}
/// <summary>Gets or sets the concatenated values of the node and all its children.</summary>
/// <returns>The concatenated values of the node and all its children.</returns>
// 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
{
}
}
/// <summary>Gets the type of the current node.</summary>
/// <returns>For <see langword="XmlProcessingInstruction" /> nodes, this value is XmlNodeType.ProcessingInstruction.</returns>
// 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;
}
}
/// <summary>Creates a duplicate of this node.</summary>
/// <param name="deep">
/// <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> to clone only the node itself. </param>
/// <returns>The duplicate node.</returns>
// 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;
}
/// <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
/// <param name="w">The <see langword="XmlWriter" /> to which you want to save. </param>
// 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)
{
}
/// <summary>Saves all the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />. Because ProcessingInstruction nodes do not have children, this method has no effect.</summary>
/// <param name="w">The <see langword="XmlWriter" /> to which you want to save. </param>
// 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;
}
}