Files
27Aug2021-Cpp2IL-Dump/System.Xml/System/Xml/XmlText.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

153 lines
5.7 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Represents the text content of an element or attribute.</summary>
// Token: 0x020000C6 RID: 198
[Token(Token = "0x20000C6")]
public class XmlText : XmlCharacterData
{
// Token: 0x06000A47 RID: 2631 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A47")]
[Address(RVA = "0x4DB570", Offset = "0x4DA570", VA = "0x1804DB570")]
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: 0x06000A48 RID: 2632 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A48")]
[Address(RVA = "0x4DB560", Offset = "0x4DA560", VA = "0x1804DB560")]
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: 0x170002F1 RID: 753
// (get) Token: 0x06000A49 RID: 2633 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002F1")]
public override string Name
{
[Token(Token = "0x6000A49")]
[Address(RVA = "0x4DB580", Offset = "0x4DA580", VA = "0x1804DB580", 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: 0x170002F2 RID: 754
// (get) Token: 0x06000A4A RID: 2634 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002F2")]
public override string LocalName
{
[Token(Token = "0x6000A4A")]
[Address(RVA = "0x4DB580", Offset = "0x4DA580", VA = "0x1804DB580", Slot = "36")]
get
{
return null;
}
}
/// <summary>Gets the type of the current node.</summary>
/// <returns>For text nodes, this value is XmlNodeType.Text.</returns>
// Token: 0x170002F3 RID: 755
// (get) Token: 0x06000A4B RID: 2635 RVA: 0x00005A00 File Offset: 0x00003C00
[Token(Token = "0x170002F3")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000A4B")]
[Address(RVA = "0x4DB5B0", Offset = "0x4DA5B0", VA = "0x1804DB5B0", 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: 0x170002F4 RID: 756
// (get) Token: 0x06000A4C RID: 2636 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002F4")]
public override XmlNode ParentNode
{
[Token(Token = "0x6000A4C")]
[Address(RVA = "0x4DB5C0", Offset = "0x4DA5C0", VA = "0x1804DB5C0", 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: 0x06000A4D RID: 2637 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A4D")]
[Address(RVA = "0x4DB500", Offset = "0x4DA500", VA = "0x1804DB500", Slot = "31")]
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: 0x170002F5 RID: 757
// (get) Token: 0x06000A4E RID: 2638 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000A4F RID: 2639 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170002F5")]
public override string Value
{
[Token(Token = "0x6000A4E")]
[Address(RVA = "0x4B84C0", Offset = "0x4B74C0", VA = "0x1804B84C0", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x6000A4F")]
[Address(RVA = "0x4DB660", Offset = "0x4DA660", VA = "0x1804DB660", 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: 0x06000A50 RID: 2640 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A50")]
[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" />. <see langword="XmlText" /> nodes do not have children, so this method has no effect.</summary>
/// <param name="w">The <see langword="XmlWriter" /> to which you want to save. </param>
// Token: 0x06000A51 RID: 2641 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A51")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "44")]
public override void WriteContentTo(XmlWriter w)
{
}
// Token: 0x170002F6 RID: 758
// (get) Token: 0x06000A52 RID: 2642 RVA: 0x00005A18 File Offset: 0x00003C18
[Token(Token = "0x170002F6")]
internal override bool IsText
{
[Token(Token = "0x6000A52")]
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "55")]
get
{
return default(bool);
}
}
}
}