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

109 lines
4.1 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Represents a CDATA section.</summary>
// Token: 0x02000037 RID: 55
[Token(Token = "0x2000037")]
public class XmlCDataSection : XmlCharacterData
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlCDataSection" /> class.</summary>
/// <param name="data">
/// <see cref="T:System.String" /> that contains character data.</param>
/// <param name="doc">
/// <see cref="T:System.Xml.XmlDocument" /> object.</param>
// Token: 0x06000247 RID: 583 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000247")]
[Address(RVA = "0x461020", Offset = "0x45FE20", VA = "0x180461020")]
protected internal XmlCDataSection(string data, XmlDocument doc)
{
}
/// <summary>Gets the qualified name of the node.</summary>
/// <returns>For CDATA nodes, the name is <see langword="#cdata-section" />.</returns>
// Token: 0x170000E2 RID: 226
// (get) Token: 0x06000248 RID: 584 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000E2")]
public override string Name
{
[Token(Token = "0x6000248")]
[Address(RVA = "0x461060", Offset = "0x45FE60", VA = "0x180461060", Slot = "6")]
get
{
return null;
}
}
/// <summary>Gets the local name of the node.</summary>
/// <returns>For CDATA nodes, the local name is <see langword="#cdata-section" />.</returns>
// Token: 0x170000E3 RID: 227
// (get) Token: 0x06000249 RID: 585 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000E3")]
public override string LocalName
{
[Token(Token = "0x6000249")]
[Address(RVA = "0x461060", Offset = "0x45FE60", VA = "0x180461060", Slot = "31")]
get
{
return null;
}
}
/// <summary>Gets the type of the current node.</summary>
/// <returns>The node type. For CDATA nodes, the value is XmlNodeType.CDATA.</returns>
// Token: 0x170000E4 RID: 228
// (get) Token: 0x0600024A RID: 586 RVA: 0x00002F28 File Offset: 0x00001128
[Token(Token = "0x170000E4")]
public override XmlNodeType NodeType
{
[Token(Token = "0x600024A")]
[Address(RVA = "0x4101C0", Offset = "0x40EFC0", VA = "0x1804101C0", 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: 0x170000E5 RID: 229
// (get) Token: 0x0600024B RID: 587 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170000E5")]
public override XmlNode ParentNode
{
[Token(Token = "0x600024B")]
[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. Because CDATA nodes do not have children, regardless of the parameter setting, the cloned node will always include the data content. </param>
/// <returns>The cloned node.</returns>
// Token: 0x0600024C RID: 588 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600024C")]
[Address(RVA = "0x460FC0", Offset = "0x45FDC0", VA = "0x180460FC0", Slot = "27")]
public override XmlNode CloneNode(bool deep)
{
return null;
}
// Token: 0x170000E6 RID: 230
// (get) Token: 0x0600024D RID: 589 RVA: 0x00002F40 File Offset: 0x00001140
[Token(Token = "0x170000E6")]
internal override bool IsText
{
[Token(Token = "0x600024D")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "45")]
get
{
return default(bool);
}
}
}
}