This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+99
View File
@@ -0,0 +1,99 @@
using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Provides text manipulation methods that are used by several classes.</summary>
// Token: 0x020000A8 RID: 168
[Token(Token = "0x20000A8")]
public abstract class XmlCharacterData : XmlLinkedNode
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlCharacterData" /> class.</summary>
/// <param name="data">String that contains character data to be added to document.</param>
/// <param name="doc">
/// <see cref="T:System.Xml.XmlDocument" /> to contain character data.</param>
// Token: 0x0600082B RID: 2091 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600082B")]
[Address(RVA = "0x680BC0", Offset = "0x67FBC0", VA = "0x180680BC0")]
protected internal XmlCharacterData(string data, XmlDocument doc)
{
}
/// <summary>Gets or sets the value of the node.</summary>
/// <returns>The value of the node.</returns>
/// <exception cref="T:System.ArgumentException">Node is read-only. </exception>
// Token: 0x17000220 RID: 544
// (get) Token: 0x0600082C RID: 2092 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x0600082D RID: 2093 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000220")]
public override string Value
{
[Token(Token = "0x600082C")]
[Address(RVA = "0x4B84C0", Offset = "0x4B74C0", VA = "0x1804B84C0", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x600082D")]
[Address(RVA = "0x6819A0", Offset = "0x6809A0", VA = "0x1806819A0", Slot = "8")]
set
{
}
}
/// <summary>Gets or sets the concatenated values of the node and all the children of the node.</summary>
/// <returns>The concatenated values of the node and all the children of the node.</returns>
// Token: 0x17000221 RID: 545
// (get) Token: 0x0600082E RID: 2094 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x0600082F RID: 2095 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000221")]
public override string InnerText
{
[Token(Token = "0x600082E")]
[Address(RVA = "0x6818B0", Offset = "0x6808B0", VA = "0x1806818B0", Slot = "38")]
get
{
return null;
}
[Token(Token = "0x600082F")]
[Address(RVA = "0x681980", Offset = "0x680980", VA = "0x180681980", Slot = "39")]
set
{
}
}
/// <summary>Contains the data of the node.</summary>
/// <returns>The data of the node.</returns>
// Token: 0x17000222 RID: 546
// (get) Token: 0x06000830 RID: 2096 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000831 RID: 2097 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000222")]
public virtual string Data
{
[Token(Token = "0x6000830")]
[Address(RVA = "0x681860", Offset = "0x680860", VA = "0x180681860", Slot = "56")]
get
{
return null;
}
[Token(Token = "0x6000831")]
[Address(RVA = "0x6818D0", Offset = "0x6808D0", VA = "0x1806818D0", Slot = "57")]
set
{
}
}
// Token: 0x06000832 RID: 2098 RVA: 0x00004F50 File Offset: 0x00003150
[Token(Token = "0x6000832")]
[Address(RVA = "0x681790", Offset = "0x680790", VA = "0x180681790")]
internal bool CheckOnData(string data)
{
return default(bool);
}
// Token: 0x040004D6 RID: 1238
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x40004D6")]
private string data;
}
}