73 lines
2.5 KiB
C#
73 lines
2.5 KiB
C#
using System;
|
|
using System.Text;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml.Linq
|
|
{
|
|
/// <summary>Represents a text node.</summary>
|
|
// Token: 0x0200000C RID: 12
|
|
[Token(Token = "0x200000C")]
|
|
public class XText : XNode
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.Linq.XText" /> class.</summary>
|
|
/// <param name="value">The <see cref="T:System.String" /> that contains the value of the <see cref="T:System.Xml.Linq.XText" /> node.</param>
|
|
// Token: 0x0600003D RID: 61 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x600003D")]
|
|
[Address(RVA = "0x11CD080", Offset = "0x11CC080", VA = "0x1811CD080")]
|
|
public XText(string value)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the node type for this node.</summary>
|
|
/// <returns>The node type. For <see cref="T:System.Xml.Linq.XText" /> objects, this value is <see cref="F:System.Xml.XmlNodeType.Text" />.</returns>
|
|
// 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;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the value of this node.</summary>
|
|
/// <returns>A <see cref="T:System.String" /> that contains the value of this node.</returns>
|
|
// 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;
|
|
}
|
|
}
|
|
|
|
/// <summary>Writes this node to an <see cref="T:System.Xml.XmlWriter" />.</summary>
|
|
/// <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> into which this method will write.</param>
|
|
// 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;
|
|
}
|
|
}
|