m
This commit is contained in:
@@ -0,0 +1,126 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml
|
||||
{
|
||||
/// <summary>Represents a CDATA section.</summary>
|
||||
// Token: 0x020000A7 RID: 167
|
||||
[Token(Token = "0x20000A7")]
|
||||
public class XmlCDataSection : XmlCharacterData
|
||||
{
|
||||
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlCDataSection" /> class.</summary>
|
||||
/// <param name="data">
|
||||
/// <see cref="T:System.String" /> that contains character data.</param>
|
||||
/// <param name="doc">
|
||||
/// <see cref="T:System.Xml.XmlDocument" /> object.</param>
|
||||
// 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)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the qualified name of the node.</summary>
|
||||
/// <returns>For CDATA nodes, the name is <see langword="#cdata-section" />.</returns>
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the local name of the node.</summary>
|
||||
/// <returns>For CDATA nodes, the local name is <see langword="#cdata-section" />.</returns>
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the type of the current node.</summary>
|
||||
/// <returns>The node type. For CDATA nodes, the value is XmlNodeType.CDATA.</returns>
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Gets the parent of this node (for nodes that can have parents).</summary>
|
||||
/// <returns>The <see langword="XmlNode" /> 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 <see langword="null" />. For all other nodes, the value returned depends on the <see cref="P:System.Xml.XmlNode.NodeType" /> of the node. The following table describes the possible return values for the <see langword="ParentNode" /> property.</returns>
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Creates a duplicate of this node.</summary>
|
||||
/// <param name="deep">
|
||||
/// <see langword="true" /> to recursively clone the subtree under the specified node; <see langword="false" /> 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. </param>
|
||||
/// <returns>The cloned node.</returns>
|
||||
// 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;
|
||||
}
|
||||
|
||||
/// <summary>Saves the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
|
||||
/// <param name="w">The <see langword="XmlWriter" /> to which you want to save. </param>
|
||||
// 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)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Saves the children of the node to the specified <see cref="T:System.Xml.XmlWriter" />.</summary>
|
||||
/// <param name="w">The <see langword="XmlWriter" /> to which you want to save. </param>
|
||||
// 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user