147 lines
5.3 KiB
C#
147 lines
5.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: 0x02000051 RID: 81
|
|
[Token(Token = "0x2000051")]
|
|
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: 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)
|
|
{
|
|
}
|
|
|
|
/// <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: 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;
|
|
}
|
|
}
|
|
|
|
/// <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: 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;
|
|
}
|
|
}
|
|
|
|
/// <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: 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
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <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: 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
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <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: 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
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the type of the current node.</summary>
|
|
/// <returns>For <see langword="XmlProcessingInstruction" /> nodes, this value is XmlNodeType.ProcessingInstruction.</returns>
|
|
// 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;
|
|
}
|
|
}
|
|
|
|
/// <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: 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;
|
|
}
|
|
}
|