using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Represents the text content of an element or attribute.
// Token: 0x020000C6 RID: 198
[Token(Token = "0x20000C6")]
public class XmlText : XmlCharacterData
{
// Token: 0x06000A47 RID: 2631 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A47")]
[Address(RVA = "0x4DB570", Offset = "0x4DA570", VA = "0x1804DB570")]
internal XmlText(string strData)
{
}
/// Initializes a new instance of the class.
/// The content of the node; see the property.
/// The parent XML document.
// Token: 0x06000A48 RID: 2632 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A48")]
[Address(RVA = "0x4DB560", Offset = "0x4DA560", VA = "0x1804DB560")]
protected internal XmlText(string strData, XmlDocument doc)
{
}
/// Gets the qualified name of the node.
/// For text nodes, this property returns .
// Token: 0x170002F1 RID: 753
// (get) Token: 0x06000A49 RID: 2633 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002F1")]
public override string Name
{
[Token(Token = "0x6000A49")]
[Address(RVA = "0x4DB580", Offset = "0x4DA580", VA = "0x1804DB580", Slot = "6")]
get
{
return null;
}
}
/// Gets the local name of the node.
/// For text nodes, this property returns .
// Token: 0x170002F2 RID: 754
// (get) Token: 0x06000A4A RID: 2634 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002F2")]
public override string LocalName
{
[Token(Token = "0x6000A4A")]
[Address(RVA = "0x4DB580", Offset = "0x4DA580", VA = "0x1804DB580", Slot = "36")]
get
{
return null;
}
}
/// Gets the type of the current node.
/// For text nodes, this value is XmlNodeType.Text.
// Token: 0x170002F3 RID: 755
// (get) Token: 0x06000A4B RID: 2635 RVA: 0x00005A00 File Offset: 0x00003C00
[Token(Token = "0x170002F3")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000A4B")]
[Address(RVA = "0x4DB5B0", Offset = "0x4DA5B0", VA = "0x1804DB5B0", Slot = "9")]
get
{
return XmlNodeType.None;
}
}
/// Gets the parent of this node (for nodes that can have parents).
/// The that is the parent of the current node. If a node has just been created and not yet added to the tree, or if it has been removed from the tree, the parent is . For all other nodes, the value returned depends on the of the node. The following table describes the possible return values for the property.
// Token: 0x170002F4 RID: 756
// (get) Token: 0x06000A4C RID: 2636 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002F4")]
public override XmlNode ParentNode
{
[Token(Token = "0x6000A4C")]
[Address(RVA = "0x4DB5C0", Offset = "0x4DA5C0", VA = "0x1804DB5C0", Slot = "10")]
get
{
return null;
}
}
/// Creates a duplicate of this node.
///
/// to recursively clone the subtree under the specified node; to clone only the node itself.
/// The cloned node.
// Token: 0x06000A4D RID: 2637 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A4D")]
[Address(RVA = "0x4DB500", Offset = "0x4DA500", VA = "0x1804DB500", Slot = "31")]
public override XmlNode CloneNode(bool deep)
{
return null;
}
/// Gets or sets the value of the node.
/// The content of the text node.
// Token: 0x170002F5 RID: 757
// (get) Token: 0x06000A4E RID: 2638 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000A4F RID: 2639 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170002F5")]
public override string Value
{
[Token(Token = "0x6000A4E")]
[Address(RVA = "0x4B84C0", Offset = "0x4B74C0", VA = "0x1804B84C0", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x6000A4F")]
[Address(RVA = "0x4DB660", Offset = "0x4DA660", VA = "0x1804DB660", Slot = "8")]
set
{
}
}
/// Saves the node to the specified .
/// The to which you want to save.
// Token: 0x06000A50 RID: 2640 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A50")]
[Address(RVA = "0x4B82E0", Offset = "0x4B72E0", VA = "0x1804B82E0", Slot = "43")]
public override void WriteTo(XmlWriter w)
{
}
/// Saves all the children of the node to the specified . nodes do not have children, so this method has no effect.
/// The to which you want to save.
// Token: 0x06000A51 RID: 2641 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A51")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "44")]
public override void WriteContentTo(XmlWriter w)
{
}
// Token: 0x170002F6 RID: 758
// (get) Token: 0x06000A52 RID: 2642 RVA: 0x00005A18 File Offset: 0x00003C18
[Token(Token = "0x170002F6")]
internal override bool IsText
{
[Token(Token = "0x6000A52")]
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "55")]
get
{
return default(bool);
}
}
}
}