using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Represents white space between markup in a mixed content node or white space within an xml:space= 'preserve' scope. This is also referred to as significant white space.
// Token: 0x02000052 RID: 82
[Token(Token = "0x2000052")]
public class XmlSignificantWhitespace : XmlCharacterData
{
/// Initializes a new instance of the class.
/// The white space characters of the node.
/// The object.
// Token: 0x060003C3 RID: 963 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x60003C3")]
[Address(RVA = "0x5E1DA0", Offset = "0x5E0BA0", VA = "0x1805E1DA0")]
protected internal XmlSignificantWhitespace(string strData, XmlDocument doc)
{
}
/// Gets the qualified name of the node.
/// For nodes, this property returns .
// Token: 0x17000184 RID: 388
// (get) Token: 0x060003C4 RID: 964 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000184")]
public override string Name
{
[Token(Token = "0x60003C4")]
[Address(RVA = "0x5E1E60", Offset = "0x5E0C60", VA = "0x1805E1E60", Slot = "6")]
get
{
return null;
}
}
/// Gets the local name of the node.
/// For nodes, this property returns .
// Token: 0x17000185 RID: 389
// (get) Token: 0x060003C5 RID: 965 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000185")]
public override string LocalName
{
[Token(Token = "0x60003C5")]
[Address(RVA = "0x5E1E60", Offset = "0x5E0C60", VA = "0x1805E1E60", Slot = "31")]
get
{
return null;
}
}
/// Gets the type of the current node.
/// For nodes, this value is XmlNodeType.SignificantWhitespace.
// Token: 0x17000186 RID: 390
// (get) Token: 0x060003C6 RID: 966 RVA: 0x00003588 File Offset: 0x00001788
[Token(Token = "0x17000186")]
public override XmlNodeType NodeType
{
[Token(Token = "0x60003C6")]
[Address(RVA = "0x4B64A0", Offset = "0x4B52A0", VA = "0x1804B64A0", Slot = "9")]
get
{
return XmlNodeType.None;
}
}
/// Gets the parent of the current node.
/// The parent node of the current node.
// Token: 0x17000187 RID: 391
// (get) Token: 0x060003C7 RID: 967 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x17000187")]
public override XmlNode ParentNode
{
[Token(Token = "0x60003C7")]
[Address(RVA = "0x5E1E90", Offset = "0x5E0C90", VA = "0x1805E1E90", 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. For significant white space nodes, the cloned node always includes the data value, regardless of the parameter setting.
/// The cloned node.
// Token: 0x060003C8 RID: 968 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60003C8")]
[Address(RVA = "0x5E1D40", Offset = "0x5E0B40", VA = "0x1805E1D40", Slot = "27")]
public override XmlNode CloneNode(bool deep)
{
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: 0x17000188 RID: 392
// (get) Token: 0x060003C9 RID: 969 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x060003CA RID: 970 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000188")]
public override string Value
{
[Token(Token = "0x60003C9")]
[Address(RVA = "0x461C80", Offset = "0x460A80", VA = "0x180461C80", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x60003CA")]
[Address(RVA = "0x5E2010", Offset = "0x5E0E10", VA = "0x1805E2010", Slot = "8")]
set
{
}
}
// Token: 0x17000189 RID: 393
// (get) Token: 0x060003CB RID: 971 RVA: 0x000035A0 File Offset: 0x000017A0
[Token(Token = "0x17000189")]
internal override bool IsText
{
[Token(Token = "0x60003CB")]
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "45")]
get
{
return default(bool);
}
}
}
}