236 lines
8.4 KiB
C#
236 lines
8.4 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml
|
|
{
|
|
/// <summary>Represents an entity reference node.</summary>
|
|
// Token: 0x020000B2 RID: 178
|
|
[Token(Token = "0x20000B2")]
|
|
public class XmlEntityReference : XmlLinkedNode
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlEntityReference" /> class.</summary>
|
|
/// <param name="name">The name of the entity reference; see the <see cref="P:System.Xml.XmlEntityReference.Name" /> property.</param>
|
|
/// <param name="doc">The parent XML document.</param>
|
|
// Token: 0x0600090F RID: 2319 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600090F")]
|
|
[Address(RVA = "0x93F900", Offset = "0x93E900", VA = "0x18093F900")]
|
|
protected internal XmlEntityReference(string name, XmlDocument doc)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the name of the node.</summary>
|
|
/// <returns>The name of the entity referenced.</returns>
|
|
// Token: 0x1700027A RID: 634
|
|
// (get) Token: 0x06000910 RID: 2320 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700027A")]
|
|
public override string Name
|
|
{
|
|
[Token(Token = "0x6000910")]
|
|
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0", Slot = "6")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the local name of the node.</summary>
|
|
/// <returns>For <see langword="XmlEntityReference" /> nodes, this property returns the name of the entity referenced.</returns>
|
|
// Token: 0x1700027B RID: 635
|
|
// (get) Token: 0x06000911 RID: 2321 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700027B")]
|
|
public override string LocalName
|
|
{
|
|
[Token(Token = "0x6000911")]
|
|
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0", Slot = "36")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the value of the node.</summary>
|
|
/// <returns>The value of the node. For <see langword="XmlEntityReference" /> nodes, this property returns <see langword="null" />.</returns>
|
|
/// <exception cref="T:System.ArgumentException">Node is read-only. </exception>
|
|
/// <exception cref="T:System.InvalidOperationException">Setting the property. </exception>
|
|
// Token: 0x1700027C RID: 636
|
|
// (get) Token: 0x06000912 RID: 2322 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x06000913 RID: 2323 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x1700027C")]
|
|
public override string Value
|
|
{
|
|
[Token(Token = "0x6000912")]
|
|
[Address(RVA = "0x4242C0", Offset = "0x4232C0", VA = "0x1804242C0", Slot = "7")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x6000913")]
|
|
[Address(RVA = "0x93FBB0", Offset = "0x93EBB0", VA = "0x18093FBB0", Slot = "8")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the type of the node.</summary>
|
|
/// <returns>The node type. For <see langword="XmlEntityReference" /> nodes, the value is XmlNodeType.EntityReference.</returns>
|
|
// Token: 0x1700027D RID: 637
|
|
// (get) Token: 0x06000914 RID: 2324 RVA: 0x000052E0 File Offset: 0x000034E0
|
|
[Token(Token = "0x1700027D")]
|
|
public override XmlNodeType NodeType
|
|
{
|
|
[Token(Token = "0x6000914")]
|
|
[Address(RVA = "0x6271D0", Offset = "0x6261D0", VA = "0x1806271D0", Slot = "9")]
|
|
get
|
|
{
|
|
return XmlNodeType.None;
|
|
}
|
|
}
|
|
|
|
/// <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. For <see langword="XmlEntityReference" /> nodes, this method always returns an entity reference node with no children. The replacement text is set when the node is inserted into a parent. </param>
|
|
/// <returns>The cloned node.</returns>
|
|
// Token: 0x06000915 RID: 2325 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000915")]
|
|
[Address(RVA = "0x93F4A0", Offset = "0x93E4A0", VA = "0x18093F4A0", Slot = "31")]
|
|
public override XmlNode CloneNode(bool deep)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
/// <summary>Gets a value indicating whether the node is read-only.</summary>
|
|
/// <returns>
|
|
/// <see langword="true" /> if the node is read-only; otherwise <see langword="false" />.Because <see langword="XmlEntityReference" /> nodes are read-only, this property always returns <see langword="true" />.</returns>
|
|
// Token: 0x1700027E RID: 638
|
|
// (get) Token: 0x06000916 RID: 2326 RVA: 0x000052F8 File Offset: 0x000034F8
|
|
[Token(Token = "0x1700027E")]
|
|
public override bool IsReadOnly
|
|
{
|
|
[Token(Token = "0x6000916")]
|
|
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "37")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
// Token: 0x1700027F RID: 639
|
|
// (get) Token: 0x06000917 RID: 2327 RVA: 0x00005310 File Offset: 0x00003510
|
|
[Token(Token = "0x1700027F")]
|
|
internal override bool IsContainer
|
|
{
|
|
[Token(Token = "0x6000917")]
|
|
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "18")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
// Token: 0x06000918 RID: 2328 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000918")]
|
|
[Address(RVA = "0x93F5D0", Offset = "0x93E5D0", VA = "0x18093F5D0", Slot = "47")]
|
|
internal override void SetParent(XmlNode node)
|
|
{
|
|
}
|
|
|
|
// Token: 0x06000919 RID: 2329 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000919")]
|
|
[Address(RVA = "0x93F5B0", Offset = "0x93E5B0", VA = "0x18093F5B0", Slot = "48")]
|
|
internal override void SetParentForLoad(XmlNode node)
|
|
{
|
|
}
|
|
|
|
// Token: 0x17000280 RID: 640
|
|
// (get) Token: 0x0600091A RID: 2330 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x0600091B RID: 2331 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x17000280")]
|
|
internal override XmlLinkedNode LastNode
|
|
{
|
|
[Token(Token = "0x600091A")]
|
|
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0", Slot = "19")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x600091B")]
|
|
[Address(RVA = "0x415820", Offset = "0x414820", VA = "0x180415820", Slot = "20")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
// Token: 0x0600091C RID: 2332 RVA: 0x00005328 File Offset: 0x00003528
|
|
[Token(Token = "0x600091C")]
|
|
[Address(RVA = "0x939050", Offset = "0x938050", VA = "0x180939050", Slot = "27")]
|
|
internal override bool IsValidChildType(XmlNodeType type)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
/// <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: 0x0600091D RID: 2333 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600091D")]
|
|
[Address(RVA = "0x93F8D0", Offset = "0x93E8D0", VA = "0x18093F8D0", Slot = "43")]
|
|
public override void WriteTo(XmlWriter w)
|
|
{
|
|
}
|
|
|
|
/// <summary>Saves all 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: 0x0600091E RID: 2334 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600091E")]
|
|
[Address(RVA = "0x93F690", Offset = "0x93E690", VA = "0x18093F690", Slot = "44")]
|
|
public override void WriteContentTo(XmlWriter w)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the base Uniform Resource Identifier (URI) of the current node.</summary>
|
|
/// <returns>The location from which the node was loaded.</returns>
|
|
// Token: 0x17000281 RID: 641
|
|
// (get) Token: 0x0600091F RID: 2335 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000281")]
|
|
public override string BaseURI
|
|
{
|
|
[Token(Token = "0x600091F")]
|
|
[Address(RVA = "0x93FA00", Offset = "0x93EA00", VA = "0x18093FA00", Slot = "42")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x06000920 RID: 2336 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000920")]
|
|
[Address(RVA = "0x93F4F0", Offset = "0x93E4F0", VA = "0x18093F4F0")]
|
|
private string ConstructBaseURI(string baseURI, string systemId)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x17000282 RID: 642
|
|
// (get) Token: 0x06000921 RID: 2337 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000282")]
|
|
internal string ChildBaseURI
|
|
{
|
|
[Token(Token = "0x6000921")]
|
|
[Address(RVA = "0x93FA40", Offset = "0x93EA40", VA = "0x18093FA40")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x0400051E RID: 1310
|
|
[FieldOffset(Offset = "0x20")]
|
|
[Token(Token = "0x400051E")]
|
|
private string name;
|
|
|
|
// Token: 0x0400051F RID: 1311
|
|
[FieldOffset(Offset = "0x28")]
|
|
[Token(Token = "0x400051F")]
|
|
private XmlLinkedNode lastChild;
|
|
}
|
|
}
|