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
@@ -0,0 +1,146 @@
using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Represents white space between markup in a mixed content node or white space within an xml:space= 'preserve' scope. This is also referred to as significant white space.</summary>
// Token: 0x020000C5 RID: 197
[Token(Token = "0x20000C5")]
public class XmlSignificantWhitespace : XmlCharacterData
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlSignificantWhitespace" /> 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: 0x06000A3C RID: 2620 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A3C")]
[Address(RVA = "0x4B8320", Offset = "0x4B7320", VA = "0x1804B8320")]
protected internal XmlSignificantWhitespace(string strData, XmlDocument doc)
{
}
/// <summary>Gets the qualified name of the node.</summary>
/// <returns>For <see langword="XmlSignificantWhitespace" /> nodes, this property returns <see langword="#significant-whitespace" />.</returns>
// Token: 0x170002EB RID: 747
// (get) Token: 0x06000A3D RID: 2621 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002EB")]
public override string Name
{
[Token(Token = "0x6000A3D")]
[Address(RVA = "0x4B83E0", Offset = "0x4B73E0", VA = "0x1804B83E0", Slot = "6")]
get
{
return null;
}
}
/// <summary>Gets the local name of the node.</summary>
/// <returns>For <see langword="XmlSignificantWhitespace" /> nodes, this property returns <see langword="#significant-whitespace" />.</returns>
// Token: 0x170002EC RID: 748
// (get) Token: 0x06000A3E RID: 2622 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002EC")]
public override string LocalName
{
[Token(Token = "0x6000A3E")]
[Address(RVA = "0x4B83E0", Offset = "0x4B73E0", VA = "0x1804B83E0", Slot = "36")]
get
{
return null;
}
}
/// <summary>Gets the type of the current node.</summary>
/// <returns>For <see langword="XmlSignificantWhitespace" /> nodes, this value is XmlNodeType.SignificantWhitespace.</returns>
// Token: 0x170002ED RID: 749
// (get) Token: 0x06000A3F RID: 2623 RVA: 0x000059D0 File Offset: 0x00003BD0
[Token(Token = "0x170002ED")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000A3F")]
[Address(RVA = "0x4B8410", Offset = "0x4B7410", VA = "0x1804B8410", 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: 0x170002EE RID: 750
// (get) Token: 0x06000A40 RID: 2624 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002EE")]
public override XmlNode ParentNode
{
[Token(Token = "0x6000A40")]
[Address(RVA = "0x4B8420", Offset = "0x4B7420", VA = "0x1804B8420", Slot = "10")]
get
{
return null;
}
}
/// <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 significant white space nodes, the cloned node always includes the data value, regardless of the parameter setting. </param>
/// <returns>The cloned node.</returns>
// Token: 0x06000A41 RID: 2625 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A41")]
[Address(RVA = "0x4B8280", Offset = "0x4B7280", VA = "0x1804B8280", Slot = "31")]
public override XmlNode CloneNode(bool deep)
{
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 langword="Value" /> to invalid white space characters. </exception>
// Token: 0x170002EF RID: 751
// (get) Token: 0x06000A42 RID: 2626 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000A43 RID: 2627 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170002EF")]
public override string Value
{
[Token(Token = "0x6000A42")]
[Address(RVA = "0x4B84C0", Offset = "0x4B74C0", VA = "0x1804B84C0", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x6000A43")]
[Address(RVA = "0x4B84E0", Offset = "0x4B74E0", VA = "0x1804B84E0", Slot = "8")]
set
{
}
}
/// <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
/// <param name="w">The <see langword="XmlWriter" /> to which you want to save. </param>
// Token: 0x06000A44 RID: 2628 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A44")]
[Address(RVA = "0x4B82E0", Offset = "0x4B72E0", VA = "0x1804B82E0", 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 langword="XmlWriter" /> to which you want to save. </param>
// Token: 0x06000A45 RID: 2629 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A45")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "44")]
public override void WriteContentTo(XmlWriter w)
{
}
// Token: 0x170002F0 RID: 752
// (get) Token: 0x06000A46 RID: 2630 RVA: 0x000059E8 File Offset: 0x00003BE8
[Token(Token = "0x170002F0")]
internal override bool IsText
{
[Token(Token = "0x6000A46")]
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "55")]
get
{
return default(bool);
}
}
}
}