using System;
using Cpp2IlInjected;
namespace System.Xml
{
/// Represents a CDATA section.
// Token: 0x020000A7 RID: 167
[Token(Token = "0x20000A7")]
public class XmlCDataSection : XmlCharacterData
{
/// Initializes a new instance of the class.
///
/// that contains character data.
///
/// object.
// Token: 0x06000822 RID: 2082 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000822")]
[Address(RVA = "0x680BC0", Offset = "0x67FBC0", VA = "0x180680BC0")]
protected internal XmlCDataSection(string data, XmlDocument doc)
{
}
/// Gets the qualified name of the node.
/// For CDATA nodes, the name is .
// Token: 0x1700021B RID: 539
// (get) Token: 0x06000823 RID: 2083 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700021B")]
public override string Name
{
[Token(Token = "0x6000823")]
[Address(RVA = "0x680BF0", Offset = "0x67FBF0", VA = "0x180680BF0", Slot = "6")]
get
{
return null;
}
}
/// Gets the local name of the node.
/// For CDATA nodes, the local name is .
// Token: 0x1700021C RID: 540
// (get) Token: 0x06000824 RID: 2084 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700021C")]
public override string LocalName
{
[Token(Token = "0x6000824")]
[Address(RVA = "0x680BF0", Offset = "0x67FBF0", VA = "0x180680BF0", Slot = "36")]
get
{
return null;
}
}
/// Gets the type of the current node.
/// The node type. For CDATA nodes, the value is XmlNodeType.CDATA.
// Token: 0x1700021D RID: 541
// (get) Token: 0x06000825 RID: 2085 RVA: 0x00004F20 File Offset: 0x00003120
[Token(Token = "0x1700021D")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000825")]
[Address(RVA = "0x680C20", Offset = "0x67FC20", VA = "0x180680C20", 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: 0x1700021E RID: 542
// (get) Token: 0x06000826 RID: 2086 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700021E")]
public override XmlNode ParentNode
{
[Token(Token = "0x6000826")]
[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. Because CDATA nodes do not have children, regardless of the parameter setting, the cloned node will always include the data content.
/// The cloned node.
// Token: 0x06000827 RID: 2087 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000827")]
[Address(RVA = "0x680B20", Offset = "0x67FB20", VA = "0x180680B20", Slot = "31")]
public override XmlNode CloneNode(bool deep)
{
return null;
}
/// Saves the node to the specified .
/// The to which you want to save.
// Token: 0x06000828 RID: 2088 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000828")]
[Address(RVA = "0x680B80", Offset = "0x67FB80", VA = "0x180680B80", Slot = "43")]
public override void WriteTo(XmlWriter w)
{
}
/// Saves the children of the node to the specified .
/// The to which you want to save.
// Token: 0x06000829 RID: 2089 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000829")]
[Address(RVA = "0x4242D0", Offset = "0x4232D0", VA = "0x1804242D0", Slot = "44")]
public override void WriteContentTo(XmlWriter w)
{
}
// Token: 0x1700021F RID: 543
// (get) Token: 0x0600082A RID: 2090 RVA: 0x00004F38 File Offset: 0x00003138
[Token(Token = "0x1700021F")]
internal override bool IsText
{
[Token(Token = "0x600082A")]
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "55")]
get
{
return default(bool);
}
}
}
}