using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Represents the content of an XML comment.
// Token: 0x020000AB RID: 171
[Token(Token = "0x20000AB")]
public class XmlComment : XmlCharacterData
{
/// Initializes a new instance of the class.
/// The content of the comment element.
/// The parent XML document.
// 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)
{
}
/// Gets the qualified name of the node.
/// For comment nodes, the value is .
// 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;
}
}
/// Gets the local name of the node.
/// For comment nodes, the value is .
// 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;
}
}
/// Gets the type of the current node.
/// For comment nodes, the value is XmlNodeType.Comment.
// 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;
}
}
/// 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: 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;
}
/// Saves the node to the specified .
/// The to which you want to save.
// 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)
{
}
/// Saves all the children of the node to the specified . Because comment nodes do not have children, this method has no effect.
/// The to which you want to save.
// 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)
{
}
}
}