Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

97 lines
3.7 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// <summary>Represents the content of an XML comment.</summary>
// Token: 0x020000AB RID: 171
[Token(Token = "0x20000AB")]
public class XmlComment : XmlCharacterData
{
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlComment" /> class.</summary>
/// <param name="comment">The content of the comment element.</param>
/// <param name="doc">The parent XML document.</param>
// Token: 0x0600083D RID: 2109 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x600083D")]
[Address(RVA = "0x680BC0", Offset = "0x67FBC0", VA = "0x180680BC0")]
protected internal XmlComment(string comment, XmlDocument doc)
{
}
/// <summary>Gets the qualified name of the node.</summary>
/// <returns>For comment nodes, the value is <see langword="#comment" />.</returns>
// Token: 0x17000226 RID: 550
// (get) Token: 0x0600083E RID: 2110 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000226")]
public override string Name
{
[Token(Token = "0x600083E")]
[Address(RVA = "0x681DD0", Offset = "0x680DD0", VA = "0x180681DD0", Slot = "6")]
get
{
return null;
}
}
/// <summary>Gets the local name of the node.</summary>
/// <returns>For comment nodes, the value is <see langword="#comment" />.</returns>
// Token: 0x17000227 RID: 551
// (get) Token: 0x0600083F RID: 2111 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000227")]
public override string LocalName
{
[Token(Token = "0x600083F")]
[Address(RVA = "0x681DD0", Offset = "0x680DD0", VA = "0x180681DD0", Slot = "36")]
get
{
return null;
}
}
/// <summary>Gets the type of the current node.</summary>
/// <returns>For comment nodes, the value is XmlNodeType.Comment.</returns>
// Token: 0x17000228 RID: 552
// (get) Token: 0x06000840 RID: 2112 RVA: 0x00004FB0 File Offset: 0x000031B0
[Token(Token = "0x17000228")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000840")]
[Address(RVA = "0x681E00", Offset = "0x680E00", VA = "0x180681E00", Slot = "9")]
get
{
return XmlNodeType.None;
}
}
/// <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 comment nodes do not have children, the cloned node always includes the text content, regardless of the parameter setting. </param>
/// <returns>The cloned node.</returns>
// Token: 0x06000841 RID: 2113 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000841")]
[Address(RVA = "0x681D30", Offset = "0x680D30", VA = "0x180681D30", Slot = "31")]
public override XmlNode CloneNode(bool deep)
{
return null;
}
/// <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: 0x06000842 RID: 2114 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000842")]
[Address(RVA = "0x681D90", Offset = "0x680D90", VA = "0x180681D90", 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" />. Because comment nodes do not have children, this method has no effect.</summary>
/// <param name="w">The <see langword="XmlWriter" /> to which you want to save. </param>
// Token: 0x06000843 RID: 2115 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000843")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "44")]
public override void WriteContentTo(XmlWriter w)
{
}
}
}