176 lines
6.0 KiB
C#
176 lines
6.0 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Xml
|
|
{
|
|
/// <summary>Represents a lightweight object that is useful for tree insert operations.</summary>
|
|
// Token: 0x0200003E RID: 62
|
|
[Token(Token = "0x200003E")]
|
|
public class XmlDocumentFragment : XmlNode
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Xml.XmlDocumentFragment" /> class.</summary>
|
|
/// <param name="ownerDocument">The XML document that is the source of the fragment.</param>
|
|
// Token: 0x060002C5 RID: 709 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x60002C5")]
|
|
[Address(RVA = "0x466770", Offset = "0x465570", VA = "0x180466770")]
|
|
protected internal XmlDocumentFragment(XmlDocument ownerDocument)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets the qualified name of the node.</summary>
|
|
/// <returns>For <see langword="XmlDocumentFragment" />, the name is <see langword="#document-fragment" />.</returns>
|
|
// Token: 0x1700010F RID: 271
|
|
// (get) Token: 0x060002C6 RID: 710 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x1700010F")]
|
|
public override string Name
|
|
{
|
|
[Token(Token = "0x60002C6")]
|
|
[Address(RVA = "0x466800", Offset = "0x465600", VA = "0x180466800", Slot = "6")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the local name of the node.</summary>
|
|
/// <returns>For <see langword="XmlDocumentFragment" /> nodes, the local name is <see langword="#document-fragment" />.</returns>
|
|
// Token: 0x17000110 RID: 272
|
|
// (get) Token: 0x060002C7 RID: 711 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000110")]
|
|
public override string LocalName
|
|
{
|
|
[Token(Token = "0x60002C7")]
|
|
[Address(RVA = "0x466800", Offset = "0x465600", VA = "0x180466800", Slot = "31")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the type of the current node.</summary>
|
|
/// <returns>For <see langword="XmlDocumentFragment" /> nodes, this value is XmlNodeType.DocumentFragment.</returns>
|
|
// Token: 0x17000111 RID: 273
|
|
// (get) Token: 0x060002C8 RID: 712 RVA: 0x00003120 File Offset: 0x00001320
|
|
[Token(Token = "0x17000111")]
|
|
public override XmlNodeType NodeType
|
|
{
|
|
[Token(Token = "0x60002C8")]
|
|
[Address(RVA = "0x466830", Offset = "0x465630", VA = "0x180466830", Slot = "9")]
|
|
get
|
|
{
|
|
return XmlNodeType.None;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the parent of this node (for nodes that can have parents).</summary>
|
|
/// <returns>The parent of this node.For <see langword="XmlDocumentFragment" /> nodes, this property is always <see langword="null" />.</returns>
|
|
// Token: 0x17000112 RID: 274
|
|
// (get) Token: 0x060002C9 RID: 713 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000112")]
|
|
public override XmlNode ParentNode
|
|
{
|
|
[Token(Token = "0x60002C9")]
|
|
[Address(RVA = "0x43E630", Offset = "0x43D430", VA = "0x18043E630", Slot = "10")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets the <see cref="T:System.Xml.XmlDocument" /> to which this node belongs.</summary>
|
|
/// <returns>The <see langword="XmlDocument" /> to which this node belongs.</returns>
|
|
// Token: 0x17000113 RID: 275
|
|
// (get) Token: 0x060002CA RID: 714 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000113")]
|
|
public override XmlDocument OwnerDocument
|
|
{
|
|
[Token(Token = "0x60002CA")]
|
|
[Address(RVA = "0x466840", Offset = "0x465640", VA = "0x180466840", Slot = "15")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
/// <summary>Gets or sets the markup representing the children of this node.</summary>
|
|
/// <returns>The markup of the children of this node.</returns>
|
|
/// <exception cref="T:System.Xml.XmlException">The XML specified when setting this property is not well-formed. </exception>
|
|
// Token: 0x17000114 RID: 276
|
|
// (set) Token: 0x060002CB RID: 715 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x17000114")]
|
|
public override string InnerXml
|
|
{
|
|
[Token(Token = "0x60002CB")]
|
|
[Address(RVA = "0x4668C0", Offset = "0x4656C0", VA = "0x1804668C0", Slot = "35")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
/// <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. </param>
|
|
/// <returns>The cloned node.</returns>
|
|
// Token: 0x060002CC RID: 716 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60002CC")]
|
|
[Address(RVA = "0x466620", Offset = "0x465420", VA = "0x180466620", Slot = "27")]
|
|
public override XmlNode CloneNode(bool deep)
|
|
{
|
|
return null;
|
|
}
|
|
|
|
// Token: 0x17000115 RID: 277
|
|
// (get) Token: 0x060002CD RID: 717 RVA: 0x00003138 File Offset: 0x00001338
|
|
[Token(Token = "0x17000115")]
|
|
internal override bool IsContainer
|
|
{
|
|
[Token(Token = "0x60002CD")]
|
|
[Address(RVA = "0x460D40", Offset = "0x45FB40", VA = "0x180460D40", Slot = "18")]
|
|
get
|
|
{
|
|
return default(bool);
|
|
}
|
|
}
|
|
|
|
// Token: 0x17000116 RID: 278
|
|
// (get) Token: 0x060002CE RID: 718 RVA: 0x00002050 File Offset: 0x00000250
|
|
// (set) Token: 0x060002CF RID: 719 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x17000116")]
|
|
internal override XmlLinkedNode LastNode
|
|
{
|
|
[Token(Token = "0x60002CE")]
|
|
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40", Slot = "19")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
[Token(Token = "0x60002CF")]
|
|
[Address(RVA = "0x3F7210", Offset = "0x3F6010", VA = "0x1803F7210", Slot = "20")]
|
|
set
|
|
{
|
|
}
|
|
}
|
|
|
|
// Token: 0x060002D0 RID: 720 RVA: 0x00003150 File Offset: 0x00001350
|
|
[Token(Token = "0x60002D0")]
|
|
[Address(RVA = "0x4666C0", Offset = "0x4654C0", VA = "0x1804666C0", Slot = "24")]
|
|
internal override bool IsValidChildType(XmlNodeType type)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x060002D1 RID: 721 RVA: 0x00003168 File Offset: 0x00001368
|
|
[Token(Token = "0x60002D1")]
|
|
[Address(RVA = "0x4665A0", Offset = "0x4653A0", VA = "0x1804665A0", Slot = "25")]
|
|
internal override bool CanInsertAfter(XmlNode newChild, XmlNode refChild)
|
|
{
|
|
return default(bool);
|
|
}
|
|
|
|
// Token: 0x04000165 RID: 357
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x4000165")]
|
|
private XmlLinkedNode lastChild;
|
|
}
|
|
}
|