using System;
using System.Text;
using Cpp2IlInjected;
namespace System.Xml.Linq
{
/// Represents a text node.
// Token: 0x0200000C RID: 12
[Token(Token = "0x200000C")]
public class XText : XNode
{
/// Initializes a new instance of the class.
/// The that contains the value of the node.
// Token: 0x0600003D RID: 61 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x600003D")]
[Address(RVA = "0x11CD080", Offset = "0x11CC080", VA = "0x1811CD080")]
public XText(string value)
{
}
/// Gets the node type for this node.
/// The node type. For objects, this value is .
// Token: 0x1700000C RID: 12
// (get) Token: 0x0600003E RID: 62 RVA: 0x000021D8 File Offset: 0x000003D8
[Token(Token = "0x1700000C")]
public override XmlNodeType NodeType
{
[Token(Token = "0x600003E")]
[Address(RVA = "0x4DB5B0", Offset = "0x4DA5B0", VA = "0x1804DB5B0", Slot = "6")]
get
{
return XmlNodeType.None;
}
}
/// Gets or sets the value of this node.
/// A that contains the value of this node.
// Token: 0x1700000D RID: 13
// (get) Token: 0x0600003F RID: 63 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x1700000D")]
public string Value
{
[Token(Token = "0x600003F")]
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0")]
get
{
return null;
}
}
/// Writes this node to an .
/// An into which this method will write.
// Token: 0x06000040 RID: 64 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000040")]
[Address(RVA = "0x11CCF90", Offset = "0x11CBF90", VA = "0x1811CCF90", Slot = "7")]
public override void WriteTo(XmlWriter writer)
{
}
// Token: 0x06000041 RID: 65 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000041")]
[Address(RVA = "0x11CCF60", Offset = "0x11CBF60", VA = "0x1811CCF60", Slot = "8")]
internal override void AppendText(StringBuilder sb)
{
}
// Token: 0x04000019 RID: 25
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4000019")]
internal string text;
}
}