using System;
using Cpp2IlInjected;
namespace System.Xml.Linq
{
/// Represents an XML processing instruction.
// Token: 0x02000017 RID: 23
[Token(Token = "0x2000017")]
public class XProcessingInstruction : XNode
{
/// Gets or sets the string value of this processing instruction.
/// A that contains the string value of this processing instruction.
/// The string is .
// Token: 0x1700001C RID: 28
// (get) Token: 0x06000075 RID: 117 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x1700001C")]
public string Data
{
[Token(Token = "0x6000075")]
[Address(RVA = "0x4157E0", Offset = "0x4147E0", VA = "0x1804157E0")]
get
{
return null;
}
}
/// Gets the node type for this node.
/// The node type. For objects, this value is .
// Token: 0x1700001D RID: 29
// (get) Token: 0x06000076 RID: 118 RVA: 0x00002298 File Offset: 0x00000498
[Token(Token = "0x1700001D")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000076")]
[Address(RVA = "0x4B30C0", Offset = "0x4B20C0", VA = "0x1804B30C0", Slot = "6")]
get
{
return XmlNodeType.None;
}
}
/// Gets or sets a string containing the target application for this processing instruction.
/// A containing the target application for this processing instruction.
/// The string is .
/// The does not follow the constraints of an XML name.
// Token: 0x1700001E RID: 30
// (get) Token: 0x06000077 RID: 119 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x1700001E")]
public string Target
{
[Token(Token = "0x6000077")]
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0")]
get
{
return null;
}
}
/// Writes this processing instruction to an .
/// The to write this processing instruction to.
// Token: 0x06000078 RID: 120 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000078")]
[Address(RVA = "0x11CCED0", Offset = "0x11CBED0", VA = "0x1811CCED0", Slot = "7")]
public override void WriteTo(XmlWriter writer)
{
}
// Token: 0x04000038 RID: 56
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000038")]
internal string target;
// Token: 0x04000039 RID: 57
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x4000039")]
internal string data;
}
}