using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Represents white space in element content.
// Token: 0x02000055 RID: 85
[Token(Token = "0x2000055")]
public class XmlWhitespace : XmlCharacterData
{
/// Initializes a new instance of the class.
/// The white space characters of the node.
/// The object.
// Token: 0x060003DD RID: 989 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003DD")]
[Address(RVA = "0x722E10", Offset = "0x721C10", VA = "0x180722E10")]
protected internal XmlWhitespace(string strData, XmlDocument doc)
{
}
/// Gets the qualified name of the node.
/// For nodes, this property returns .
// Token: 0x17000192 RID: 402
// (get) Token: 0x060003DE RID: 990 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000192")]
public override string Name
{
[Token(Token = "0x60003DE")]
[Address(RVA = "0x722ED0", Offset = "0x721CD0", VA = "0x180722ED0", Slot = "6")]
get
{
return null;
}
}
/// Gets the local name of the node.
/// For nodes, this property returns .
// Token: 0x17000193 RID: 403
// (get) Token: 0x060003DF RID: 991 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000193")]
public override string LocalName
{
[Token(Token = "0x60003DF")]
[Address(RVA = "0x722ED0", Offset = "0x721CD0", VA = "0x180722ED0", Slot = "31")]
get
{
return null;
}
}
/// Gets the type of the node.
/// For nodes, the value is .
// Token: 0x17000194 RID: 404
// (get) Token: 0x060003E0 RID: 992 RVA: 0x00003600 File Offset: 0x00001800
[Token(Token = "0x17000194")]
public override XmlNodeType NodeType
{
[Token(Token = "0x60003E0")]
[Address(RVA = "0x4B4BA0", Offset = "0x4B39A0", VA = "0x1804B4BA0", Slot = "9")]
get
{
return XmlNodeType.None;
}
}
/// Gets the parent of the current node.
/// The parent node of the current node.
// Token: 0x17000195 RID: 405
// (get) Token: 0x060003E1 RID: 993 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000195")]
public override XmlNode ParentNode
{
[Token(Token = "0x60003E1")]
[Address(RVA = "0x722F00", Offset = "0x721D00", VA = "0x180722F00", 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: 0x17000196 RID: 406
// (get) Token: 0x060003E2 RID: 994 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060003E3 RID: 995 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000196")]
public override string Value
{
[Token(Token = "0x60003E2")]
[Address(RVA = "0x461C80", Offset = "0x460A80", VA = "0x180461C80", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x60003E3")]
[Address(RVA = "0x722FA0", Offset = "0x721DA0", VA = "0x180722FA0", 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: 0x060003E4 RID: 996 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60003E4")]
[Address(RVA = "0x722DB0", Offset = "0x721BB0", VA = "0x180722DB0", Slot = "27")]
public override XmlNode CloneNode(bool deep)
{
return null;
}
// Token: 0x17000197 RID: 407
// (get) Token: 0x060003E5 RID: 997 RVA: 0x00003618 File Offset: 0x00001818
[Token(Token = "0x17000197")]
internal override bool IsText
{
[Token(Token = "0x60003E5")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "45")]
get
{
return default(bool);
}
}
}
}