Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

79 lines
3.0 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml.Linq
{
/// <summary>Represents an XML processing instruction.</summary>
// Token: 0x02000017 RID: 23
[Token(Token = "0x2000017")]
public class XProcessingInstruction : XNode
{
/// <summary>Gets or sets the string value of this processing instruction.</summary>
/// <returns>A <see cref="T:System.String" /> that contains the string value of this processing instruction.</returns>
/// <exception cref="T:System.ArgumentNullException">The string <paramref name="value" /> is <see langword="null" />.</exception>
// 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;
}
}
/// <summary>Gets the node type for this node.</summary>
/// <returns>The node type. For <see cref="T:System.Xml.Linq.XProcessingInstruction" /> objects, this value is <see cref="F:System.Xml.XmlNodeType.ProcessingInstruction" />.</returns>
// 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;
}
}
/// <summary>Gets or sets a string containing the target application for this processing instruction.</summary>
/// <returns>A <see cref="T:System.String" /> containing the target application for this processing instruction.</returns>
/// <exception cref="T:System.ArgumentNullException">The string <paramref name="value" /> is <see langword="null" />.</exception>
/// <exception cref="T:System.ArgumentException">The <paramref name="target" /> does not follow the constraints of an XML name.</exception>
// 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;
}
}
/// <summary>Writes this processing instruction to an <see cref="T:System.Xml.XmlWriter" />.</summary>
/// <param name="writer">The <see cref="T:System.Xml.XmlWriter" /> to write this processing instruction to.</param>
// 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;
}
}