using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Represents white space in element content.
// Token: 0x020000C8 RID: 200
[Token(Token = "0x20000C8")]
public class XmlWhitespace : XmlCharacterData
{
/// Initializes a new instance of the class.
/// The white space characters of the node.
/// The object.
// Token: 0x06000A5D RID: 2653 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A5D")]
[Address(RVA = "0xAD7CF0", Offset = "0xAD6CF0", VA = "0x180AD7CF0")]
protected internal XmlWhitespace(string strData, XmlDocument doc)
{
}
/// Gets the qualified name of the node.
/// For nodes, this property returns .
// Token: 0x170002F9 RID: 761
// (get) Token: 0x06000A5E RID: 2654 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002F9")]
public override string Name
{
[Token(Token = "0x6000A5E")]
[Address(RVA = "0xAD7DB0", Offset = "0xAD6DB0", VA = "0x180AD7DB0", Slot = "6")]
get
{
return null;
}
}
/// Gets the local name of the node.
/// For nodes, this property returns .
// Token: 0x170002FA RID: 762
// (get) Token: 0x06000A5F RID: 2655 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002FA")]
public override string LocalName
{
[Token(Token = "0x6000A5F")]
[Address(RVA = "0xAD7DB0", Offset = "0xAD6DB0", VA = "0x180AD7DB0", Slot = "36")]
get
{
return null;
}
}
/// Gets the type of the node.
/// For nodes, the value is .
// Token: 0x170002FB RID: 763
// (get) Token: 0x06000A60 RID: 2656 RVA: 0x00005A48 File Offset: 0x00003C48
[Token(Token = "0x170002FB")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000A60")]
[Address(RVA = "0xAD7DE0", Offset = "0xAD6DE0", VA = "0x180AD7DE0", Slot = "9")]
get
{
return XmlNodeType.None;
}
}
/// Gets the parent of the current node.
/// The parent node of the current node.
// Token: 0x170002FC RID: 764
// (get) Token: 0x06000A61 RID: 2657 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002FC")]
public override XmlNode ParentNode
{
[Token(Token = "0x6000A61")]
[Address(RVA = "0x4B8420", Offset = "0x4B7420", VA = "0x1804B8420", Slot = "10")]
get
{
return null;
}
}
/// Gets or sets the value of the node.
/// The white space characters found in the node.
/// Setting to invalid white space characters.
// Token: 0x170002FD RID: 765
// (get) Token: 0x06000A62 RID: 2658 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000A63 RID: 2659 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170002FD")]
public override string Value
{
[Token(Token = "0x6000A62")]
[Address(RVA = "0x4B84C0", Offset = "0x4B74C0", VA = "0x1804B84C0", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x6000A63")]
[Address(RVA = "0xAD7DF0", Offset = "0xAD6DF0", VA = "0x180AD7DF0", Slot = "8")]
set
{
}
}
/// Creates a duplicate of this node.
///
/// to recursively clone the subtree under the specified node; to clone only the node itself. For white space nodes, the cloned node always includes the data value, regardless of the parameter setting.
/// The cloned node.
// Token: 0x06000A64 RID: 2660 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A64")]
[Address(RVA = "0xAD7C50", Offset = "0xAD6C50", VA = "0x180AD7C50", Slot = "31")]
public override XmlNode CloneNode(bool deep)
{
return null;
}
/// Saves the node to the specified .
/// The to which you want to save.
// Token: 0x06000A65 RID: 2661 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A65")]
[Address(RVA = "0xAD7CB0", Offset = "0xAD6CB0", VA = "0x180AD7CB0", Slot = "43")]
public override void WriteTo(XmlWriter w)
{
}
/// Saves all the children of the node to the specified .
/// The to which you want to save.
// Token: 0x06000A66 RID: 2662 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A66")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "44")]
public override void WriteContentTo(XmlWriter w)
{
}
// Token: 0x170002FE RID: 766
// (get) Token: 0x06000A67 RID: 2663 RVA: 0x00005A60 File Offset: 0x00003C60
[Token(Token = "0x170002FE")]
internal override bool IsText
{
[Token(Token = "0x6000A67")]
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "55")]
get
{
return default(bool);
}
}
}
}