using System;
using Cpp2IlInjected;
namespace System.Xml.Linq
{
/// Represents an XML comment.
// Token: 0x02000016 RID: 22
[Token(Token = "0x2000016")]
public class XComment : XNode
{
/// Gets the node type for this node.
/// The node type. For objects, this value is .
// Token: 0x1700001A RID: 26
// (get) Token: 0x06000072 RID: 114 RVA: 0x00002280 File Offset: 0x00000480
[Token(Token = "0x1700001A")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000072")]
[Address(RVA = "0x681E00", Offset = "0x680E00", VA = "0x180681E00", Slot = "6")]
get
{
return XmlNodeType.None;
}
}
/// Gets or sets the string value of this comment.
/// A that contains the string value of this comment.
/// The is .
// Token: 0x1700001B RID: 27
// (get) Token: 0x06000073 RID: 115 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x1700001B")]
public string Value
{
[Token(Token = "0x6000073")]
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0")]
get
{
return null;
}
}
/// Write this comment to an .
/// An into which this method will write.
// Token: 0x06000074 RID: 116 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000074")]
[Address(RVA = "0x11CA9A0", Offset = "0x11C99A0", VA = "0x1811CA9A0", Slot = "7")]
public override void WriteTo(XmlWriter writer)
{
}
// Token: 0x04000037 RID: 55
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000037")]
internal string value;
}
}