79 lines
2.8 KiB
C#
79 lines
2.8 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml
|
|
{
|
|
/// <summary>Represents the content of an XML comment.</summary>
|
|
// Token: 0x0200003B RID: 59
|
|
[Token(Token = "0x200003B")]
|
|
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: 0x0600025F RID: 607 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600025F")]
|
|
[Address(RVA = "0x461020", Offset = "0x45FE20", VA = "0x180461020")]
|
|
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: 0x170000ED RID: 237
|
|
// (get) Token: 0x06000260 RID: 608 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170000ED")]
|
|
public override string Name
|
|
{
|
|
[Token(Token = "0x6000260")]
|
|
[Address(RVA = "0x4620F0", Offset = "0x460EF0", VA = "0x1804620F0", 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: 0x170000EE RID: 238
|
|
// (get) Token: 0x06000261 RID: 609 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x170000EE")]
|
|
public override string LocalName
|
|
{
|
|
[Token(Token = "0x6000261")]
|
|
[Address(RVA = "0x4620F0", Offset = "0x460EF0", VA = "0x1804620F0", Slot = "31")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the type of the current node.</summary>
|
|
/// <returns>For comment nodes, the value is XmlNodeType.Comment.</returns>
|
|
// Token: 0x170000EF RID: 239
|
|
// (get) Token: 0x06000262 RID: 610 RVA: 0x00002FB8 File Offset: 0x000011B8
|
|
[Token(Token = "0x170000EF")]
|
|
public override XmlNodeType NodeType
|
|
{
|
|
[Token(Token = "0x6000262")]
|
|
[Address(RVA = "0x4101D0", Offset = "0x40EFD0", VA = "0x1804101D0", 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: 0x06000263 RID: 611 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000263")]
|
|
[Address(RVA = "0x462090", Offset = "0x460E90", VA = "0x180462090", Slot = "27")]
|
|
public override XmlNode CloneNode(bool deep)
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
}
|