Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

129 lines
4.6 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Represents white space in element content.</summary>
// Token: 0x02000055 RID: 85
[Token(Token = "0x2000055")]
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: 0x060003DD RID: 989 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003DD")]
[Address(RVA = "0x722E10", Offset = "0x721C10", VA = "0x180722E10")]
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: 0x17000192 RID: 402
// (get) Token: 0x060003DE RID: 990 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000192")]
public override string Name
{
[Token(Token = "0x60003DE")]
[Address(RVA = "0x722ED0", Offset = "0x721CD0", VA = "0x180722ED0", 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: 0x17000193 RID: 403
// (get) Token: 0x060003DF RID: 991 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000193")]
public override string LocalName
{
[Token(Token = "0x60003DF")]
[Address(RVA = "0x722ED0", Offset = "0x721CD0", VA = "0x180722ED0", Slot = "31")]
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: 0x17000194 RID: 404
// (get) Token: 0x060003E0 RID: 992 RVA: 0x00003600 File Offset: 0x00001800
[Token(Token = "0x17000194")]
public override XmlNodeType NodeType
{
[Token(Token = "0x60003E0")]
[Address(RVA = "0x4B4BA0", Offset = "0x4B39A0", VA = "0x1804B4BA0", 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: 0x17000195 RID: 405
// (get) Token: 0x060003E1 RID: 993 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000195")]
public override XmlNode ParentNode
{
[Token(Token = "0x60003E1")]
[Address(RVA = "0x722F00", Offset = "0x721D00", VA = "0x180722F00", 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: 0x17000196 RID: 406
// (get) Token: 0x060003E2 RID: 994 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060003E3 RID: 995 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000196")]
public override string Value
{
[Token(Token = "0x60003E2")]
[Address(RVA = "0x461C80", Offset = "0x460A80", VA = "0x180461C80", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x60003E3")]
[Address(RVA = "0x722FA0", Offset = "0x721DA0", VA = "0x180722FA0", 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: 0x060003E4 RID: 996 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60003E4")]
[Address(RVA = "0x722DB0", Offset = "0x721BB0", VA = "0x180722DB0", Slot = "27")]
public override XmlNode CloneNode(bool deep)
{
return null;
}
// Token: 0x17000197 RID: 407
// (get) Token: 0x060003E5 RID: 997 RVA: 0x00003618 File Offset: 0x00001818
[Token(Token = "0x17000197")]
internal override bool IsText
{
[Token(Token = "0x60003E5")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "45")]
get
{
return default(bool);
}
}
}
}