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: 0x020000C5 RID: 197
[Token(Token = "0x20000C5")]
public class XmlSignificantWhitespace : XmlCharacterData
{
/// Initializes a new instance of the class.
/// The white space characters of the node.
/// The object.
// Token: 0x06000A3C RID: 2620 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A3C")]
[Address(RVA = "0x4B8320", Offset = "0x4B7320", VA = "0x1804B8320")]
protected internal XmlSignificantWhitespace(string strData, XmlDocument doc)
{
}
/// Gets the qualified name of the node.
/// For nodes, this property returns .
// Token: 0x170002EB RID: 747
// (get) Token: 0x06000A3D RID: 2621 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002EB")]
public override string Name
{
[Token(Token = "0x6000A3D")]
[Address(RVA = "0x4B83E0", Offset = "0x4B73E0", VA = "0x1804B83E0", Slot = "6")]
get
{
return null;
}
}
/// Gets the local name of the node.
/// For nodes, this property returns .
// Token: 0x170002EC RID: 748
// (get) Token: 0x06000A3E RID: 2622 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002EC")]
public override string LocalName
{
[Token(Token = "0x6000A3E")]
[Address(RVA = "0x4B83E0", Offset = "0x4B73E0", VA = "0x1804B83E0", Slot = "36")]
get
{
return null;
}
}
/// Gets the type of the current node.
/// For nodes, this value is XmlNodeType.SignificantWhitespace.
// Token: 0x170002ED RID: 749
// (get) Token: 0x06000A3F RID: 2623 RVA: 0x000059D0 File Offset: 0x00003BD0
[Token(Token = "0x170002ED")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000A3F")]
[Address(RVA = "0x4B8410", Offset = "0x4B7410", VA = "0x1804B8410", Slot = "9")]
get
{
return XmlNodeType.None;
}
}
/// Gets the parent of the current node.
/// The parent node of the current node.
// Token: 0x170002EE RID: 750
// (get) Token: 0x06000A40 RID: 2624 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x170002EE")]
public override XmlNode ParentNode
{
[Token(Token = "0x6000A40")]
[Address(RVA = "0x4B8420", Offset = "0x4B7420", VA = "0x1804B8420", 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: 0x06000A41 RID: 2625 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000A41")]
[Address(RVA = "0x4B8280", Offset = "0x4B7280", VA = "0x1804B8280", Slot = "31")]
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: 0x170002EF RID: 751
// (get) Token: 0x06000A42 RID: 2626 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000A43 RID: 2627 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x170002EF")]
public override string Value
{
[Token(Token = "0x6000A42")]
[Address(RVA = "0x4B84C0", Offset = "0x4B74C0", VA = "0x1804B84C0", Slot = "7")]
get
{
return null;
}
[Token(Token = "0x6000A43")]
[Address(RVA = "0x4B84E0", Offset = "0x4B74E0", VA = "0x1804B84E0", Slot = "8")]
set
{
}
}
/// Saves the node to the specified .
/// The to which you want to save.
// Token: 0x06000A44 RID: 2628 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A44")]
[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 .
/// The to which you want to save.
// Token: 0x06000A45 RID: 2629 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000A45")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "44")]
public override void WriteContentTo(XmlWriter w)
{
}
// Token: 0x170002F0 RID: 752
// (get) Token: 0x06000A46 RID: 2630 RVA: 0x000059E8 File Offset: 0x00003BE8
[Token(Token = "0x170002F0")]
internal override bool IsText
{
[Token(Token = "0x6000A46")]
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "55")]
get
{
return default(bool);
}
}
}
}