Files
Aug2021-Cpp2IL-Dump/System.Xml/XmlSignificantWhitespace.cs
T
2026-04-10 22:50:51 +02:00

129 lines
4.7 KiB
C#

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: 0x02000052 RID: 82
[Token(Token = "0x2000052")]
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: 0x060003C3 RID: 963 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003C3")]
[Address(RVA = "0x5E1DA0", Offset = "0x5E0BA0", VA = "0x1805E1DA0")]
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: 0x17000184 RID: 388
// (get) Token: 0x060003C4 RID: 964 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000184")]
public override string Name
{
[Token(Token = "0x60003C4")]
[Address(RVA = "0x5E1E60", Offset = "0x5E0C60", VA = "0x1805E1E60", 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: 0x17000185 RID: 389
// (get) Token: 0x060003C5 RID: 965 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000185")]
public override string LocalName
{
[Token(Token = "0x60003C5")]
[Address(RVA = "0x5E1E60", Offset = "0x5E0C60", VA = "0x1805E1E60", Slot = "31")]
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: 0x17000186 RID: 390
// (get) Token: 0x060003C6 RID: 966 RVA: 0x00003588 File Offset: 0x00001788
[Token(Token = "0x17000186")]
public override XmlNodeType NodeType
{
[Token(Token = "0x60003C6")]
[Address(RVA = "0x4B64A0", Offset = "0x4B52A0", VA = "0x1804B64A0", 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: 0x17000187 RID: 391
// (get) Token: 0x060003C7 RID: 967 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000187")]
public override XmlNode ParentNode
{
[Token(Token = "0x60003C7")]
[Address(RVA = "0x5E1E90", Offset = "0x5E0C90", VA = "0x1805E1E90", 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: 0x060003C8 RID: 968 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60003C8")]
[Address(RVA = "0x5E1D40", Offset = "0x5E0B40", VA = "0x1805E1D40", Slot = "27")]
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: 0x17000188 RID: 392
// (get) Token: 0x060003C9 RID: 969 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060003CA RID: 970 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000188")]
public override string Value
{
[Token(Token = "0x60003C9")]
[Address(RVA = "0x461C80", Offset = "0x460A80", VA = "0x180461C80", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x60003CA")]
[Address(RVA = "0x5E2010", Offset = "0x5E0E10", VA = "0x1805E2010", Slot = "8")]
set
{
}
}
// Token: 0x17000189 RID: 393
// (get) Token: 0x060003CB RID: 971 RVA: 0x000035A0 File Offset: 0x000017A0
[Token(Token = "0x17000189")]
internal override bool IsText
{
[Token(Token = "0x60003CB")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "45")]
get
{
return default(bool);
}
}
}
}