using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Represents the content of an XML comment.
// Token: 0x0200003B RID: 59
[Token(Token = "0x200003B")]
public class XmlComment : XmlCharacterData
{
/// Initializes a new instance of the class.
/// The content of the comment element.
/// The parent XML document.
// 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)
{
}
/// Gets the qualified name of the node.
/// For comment nodes, the value is .
// 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;
}
}
/// Gets the local name of the node.
/// For comment nodes, the value is .
// 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;
}
}
/// Gets the type of the current node.
/// For comment nodes, the value is XmlNodeType.Comment.
// 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;
}
}
/// Creates a duplicate of this node.
///
/// to recursively clone the subtree under the specified node; 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.
/// The cloned node.
// 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;
}
}
}