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
+146
View File
@@ -0,0 +1,146 @@
using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Represents white space in element content.</summary>
// Token: 0x020000C8 RID: 200
[Token(Token = "0x20000C8")]
public class XmlWhitespace : XmlCharacterData
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlWhitespace" /> class.</summary>
/// <param name="strData">The white space characters of the node.</param>
/// <param name="doc">The <see cref="T:System.Xml.XmlDocument" /> object.</param>
// Token: 0x06000A5D RID: 2653 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A5D")]
[Address(RVA = "0xAD7CF0", Offset = "0xAD6CF0", VA = "0x180AD7CF0")]
protected internal XmlWhitespace(string strData, XmlDocument doc)
{
}
/// <summary>Gets the qualified name of the node.</summary>
/// <returns>For <see langword="XmlWhitespace" /> nodes, this property returns <see langword="#whitespace" />.</returns>
// Token: 0x170002F9 RID: 761
// (get) Token: 0x06000A5E RID: 2654 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002F9")]
public override string Name
{
[Token(Token = "0x6000A5E")]
[Address(RVA = "0xAD7DB0", Offset = "0xAD6DB0", VA = "0x180AD7DB0", Slot = "6")]
get
{
return null;
}
}
/// <summary>Gets the local name of the node.</summary>
/// <returns>For <see langword="XmlWhitespace" /> nodes, this property returns <see langword="#whitespace" />.</returns>
// Token: 0x170002FA RID: 762
// (get) Token: 0x06000A5F RID: 2655 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002FA")]
public override string LocalName
{
[Token(Token = "0x6000A5F")]
[Address(RVA = "0xAD7DB0", Offset = "0xAD6DB0", VA = "0x180AD7DB0", Slot = "36")]
get
{
return null;
}
}
/// <summary>Gets the type of the node.</summary>
/// <returns>For <see langword="XmlWhitespace" /> nodes, the value is <see cref="F:System.Xml.XmlNodeType.Whitespace" />.</returns>
// Token: 0x170002FB RID: 763
// (get) Token: 0x06000A60 RID: 2656 RVA: 0x00005A48 File Offset: 0x00003C48
[Token(Token = "0x170002FB")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000A60")]
[Address(RVA = "0xAD7DE0", Offset = "0xAD6DE0", VA = "0x180AD7DE0", Slot = "9")]
get
{
return XmlNodeType.None;
}
}
/// <summary>Gets the parent of the current node.</summary>
/// <returns>The <see cref="T:System.Xml.XmlNode" /> parent node of the current node.</returns>
// Token: 0x170002FC RID: 764
// (get) Token: 0x06000A61 RID: 2657 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002FC")]
public override XmlNode ParentNode
{
[Token(Token = "0x6000A61")]
[Address(RVA = "0x4B8420", Offset = "0x4B7420", VA = "0x1804B8420", Slot = "10")]
get
{
return null;
}
}
/// <summary>Gets or sets the value of the node.</summary>
/// <returns>The white space characters found in the node.</returns>
/// <exception cref="T:System.ArgumentException">Setting <see cref="P:System.Xml.XmlWhitespace.Value" /> to invalid white space characters. </exception>
// Token: 0x170002FD RID: 765
// (get) Token: 0x06000A62 RID: 2658 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000A63 RID: 2659 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170002FD")]
public override string Value
{
[Token(Token = "0x6000A62")]
[Address(RVA = "0x4B84C0", Offset = "0x4B74C0", VA = "0x1804B84C0", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x6000A63")]
[Address(RVA = "0xAD7DF0", Offset = "0xAD6DF0", VA = "0x180AD7DF0", Slot = "8")]
set
{
}
}
/// <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. For white space nodes, the cloned node always includes the data value, regardless of the parameter setting. </param>
/// <returns>The cloned node.</returns>
// Token: 0x06000A64 RID: 2660 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A64")]
[Address(RVA = "0xAD7C50", Offset = "0xAD6C50", VA = "0x180AD7C50", 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 cref="T:System.Xml.XmlWriter" /> to which you want to save.</param>
// Token: 0x06000A65 RID: 2661 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A65")]
[Address(RVA = "0xAD7CB0", Offset = "0xAD6CB0", VA = "0x180AD7CB0", 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" />.</summary>
/// <param name="w">The <see cref="T:System.Xml.XmlWriter" /> to which you want to save. </param>
// Token: 0x06000A66 RID: 2662 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A66")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "44")]
public override void WriteContentTo(XmlWriter w)
{
}
// Token: 0x170002FE RID: 766
// (get) Token: 0x06000A67 RID: 2663 RVA: 0x00005A60 File Offset: 0x00003C60
[Token(Token = "0x170002FE")]
internal override bool IsText
{
[Token(Token = "0x6000A67")]
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "55")]
get
{
return default(bool);
}
}
}
}