Files
Apr2020-Cpp2Il-Dump/System.Xml/XmlText.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

135 lines
4.8 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Represents the text content of an element or attribute.</summary>
// Token: 0x02000053 RID: 83
[Token(Token = "0x2000053")]
public class XmlText : XmlCharacterData
{
// Token: 0x060003CC RID: 972 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003CC")]
[Address(RVA = "0x5F61B0", Offset = "0x5F4FB0", VA = "0x1805F61B0")]
internal XmlText(string strData)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlText" /> class.</summary>
/// <param name="strData">The content of the node; see the <see cref="P:System.Xml.XmlText.Value" /> property.</param>
/// <param name="doc">The parent XML document.</param>
// Token: 0x060003CD RID: 973 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003CD")]
[Address(RVA = "0x5F61A0", Offset = "0x5F4FA0", VA = "0x1805F61A0")]
protected internal XmlText(string strData, XmlDocument doc)
{
}
/// <summary>Gets the qualified name of the node.</summary>
/// <returns>For text nodes, this property returns <see langword="#text" />.</returns>
// Token: 0x1700018A RID: 394
// (get) Token: 0x060003CE RID: 974 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700018A")]
public override string Name
{
[Token(Token = "0x60003CE")]
[Address(RVA = "0x5F61C0", Offset = "0x5F4FC0", VA = "0x1805F61C0", Slot = "6")]
get
{
return null;
}
}
/// <summary>Gets the local name of the node.</summary>
/// <returns>For text nodes, this property returns <see langword="#text" />.</returns>
// Token: 0x1700018B RID: 395
// (get) Token: 0x060003CF RID: 975 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700018B")]
public override string LocalName
{
[Token(Token = "0x60003CF")]
[Address(RVA = "0x5F61C0", Offset = "0x5F4FC0", VA = "0x1805F61C0", Slot = "31")]
get
{
return null;
}
}
/// <summary>Gets the type of the current node.</summary>
/// <returns>For text nodes, this value is XmlNodeType.Text.</returns>
// Token: 0x1700018C RID: 396
// (get) Token: 0x060003D0 RID: 976 RVA: 0x000035B8 File Offset: 0x000017B8
[Token(Token = "0x1700018C")]
public override XmlNodeType NodeType
{
[Token(Token = "0x60003D0")]
[Address(RVA = "0x53A4A0", Offset = "0x5392A0", VA = "0x18053A4A0", Slot = "9")]
get
{
return XmlNodeType.None;
}
}
/// <summary>Gets the parent of this node (for nodes that can have parents).</summary>
/// <returns>The <see langword="XmlNode" /> that is the parent of the current node. If a node has just been created and not yet added to the tree, or if it has been removed from the tree, the parent is <see langword="null" />. For all other nodes, the value returned depends on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node. The following table describes the possible return values for the <see langword="ParentNode" /> property.</returns>
// Token: 0x1700018D RID: 397
// (get) Token: 0x060003D1 RID: 977 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700018D")]
public override XmlNode ParentNode
{
[Token(Token = "0x60003D1")]
[Address(RVA = "0x461090", Offset = "0x45FE90", VA = "0x180461090", 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. </param>
/// <returns>The cloned node.</returns>
// Token: 0x060003D2 RID: 978 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60003D2")]
[Address(RVA = "0x5F6140", Offset = "0x5F4F40", VA = "0x1805F6140", Slot = "27")]
public override XmlNode CloneNode(bool deep)
{
return null;
}
/// <summary>Gets or sets the value of the node.</summary>
/// <returns>The content of the text node.</returns>
// Token: 0x1700018E RID: 398
// (get) Token: 0x060003D3 RID: 979 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060003D4 RID: 980 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x1700018E")]
public override string Value
{
[Token(Token = "0x60003D3")]
[Address(RVA = "0x461C80", Offset = "0x460A80", VA = "0x180461C80", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x60003D4")]
[Address(RVA = "0x5F61F0", Offset = "0x5F4FF0", VA = "0x1805F61F0", Slot = "8")]
set
{
}
}
// Token: 0x1700018F RID: 399
// (get) Token: 0x060003D5 RID: 981 RVA: 0x000035D0 File Offset: 0x000017D0
[Token(Token = "0x1700018F")]
internal override bool IsText
{
[Token(Token = "0x60003D5")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "45")]
get
{
return default(bool);
}
}
}
}