m
This commit is contained in:
@@ -0,0 +1,201 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Xml
|
||||
{
|
||||
/// <summary>Represents a lightweight object that is useful for tree insert operations.</summary>
|
||||
// Token: 0x020000AE RID: 174
|
||||
[Token(Token = "0x20000AE")]
|
||||
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: 0x060008B1 RID: 2225 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60008B1")]
|
||||
[Address(RVA = "0x9379C0", Offset = "0x9369C0", VA = "0x1809379C0")]
|
||||
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: 0x1700024C RID: 588
|
||||
// (get) Token: 0x060008B2 RID: 2226 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700024C")]
|
||||
public override string Name
|
||||
{
|
||||
[Token(Token = "0x60008B2")]
|
||||
[Address(RVA = "0x937A50", Offset = "0x936A50", VA = "0x180937A50", 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: 0x1700024D RID: 589
|
||||
// (get) Token: 0x060008B3 RID: 2227 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700024D")]
|
||||
public override string LocalName
|
||||
{
|
||||
[Token(Token = "0x60008B3")]
|
||||
[Address(RVA = "0x937A50", Offset = "0x936A50", VA = "0x180937A50", Slot = "36")]
|
||||
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: 0x1700024E RID: 590
|
||||
// (get) Token: 0x060008B4 RID: 2228 RVA: 0x00005130 File Offset: 0x00003330
|
||||
[Token(Token = "0x1700024E")]
|
||||
public override XmlNodeType NodeType
|
||||
{
|
||||
[Token(Token = "0x60008B4")]
|
||||
[Address(RVA = "0x937A80", Offset = "0x936A80", VA = "0x180937A80", 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: 0x1700024F RID: 591
|
||||
// (get) Token: 0x060008B5 RID: 2229 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700024F")]
|
||||
public override XmlNode ParentNode
|
||||
{
|
||||
[Token(Token = "0x60008B5")]
|
||||
[Address(RVA = "0x4242C0", Offset = "0x4232C0", VA = "0x1804242C0", 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: 0x17000250 RID: 592
|
||||
// (get) Token: 0x060008B6 RID: 2230 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x17000250")]
|
||||
public override XmlDocument OwnerDocument
|
||||
{
|
||||
[Token(Token = "0x60008B6")]
|
||||
[Address(RVA = "0x937A90", Offset = "0x936A90", VA = "0x180937A90", 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: 0x17000251 RID: 593
|
||||
// (set) Token: 0x060008B7 RID: 2231 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000251")]
|
||||
public override string InnerXml
|
||||
{
|
||||
[Token(Token = "0x60008B7")]
|
||||
[Address(RVA = "0x937B10", Offset = "0x936B10", VA = "0x180937B10", Slot = "40")]
|
||||
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: 0x060008B8 RID: 2232 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x60008B8")]
|
||||
[Address(RVA = "0x937630", Offset = "0x936630", VA = "0x180937630", Slot = "31")]
|
||||
public override XmlNode CloneNode(bool deep)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
// Token: 0x17000252 RID: 594
|
||||
// (get) Token: 0x060008B9 RID: 2233 RVA: 0x00005148 File Offset: 0x00003348
|
||||
[Token(Token = "0x17000252")]
|
||||
internal override bool IsContainer
|
||||
{
|
||||
[Token(Token = "0x60008B9")]
|
||||
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "18")]
|
||||
get
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17000253 RID: 595
|
||||
// (get) Token: 0x060008BA RID: 2234 RVA: 0x00002050 File Offset: 0x00000250
|
||||
// (set) Token: 0x060008BB RID: 2235 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x17000253")]
|
||||
internal override XmlLinkedNode LastNode
|
||||
{
|
||||
[Token(Token = "0x60008BA")]
|
||||
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0", Slot = "19")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
[Token(Token = "0x60008BB")]
|
||||
[Address(RVA = "0x4157F0", Offset = "0x4147F0", VA = "0x1804157F0", Slot = "20")]
|
||||
set
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x060008BC RID: 2236 RVA: 0x00005160 File Offset: 0x00003360
|
||||
[Token(Token = "0x60008BC")]
|
||||
[Address(RVA = "0x9376D0", Offset = "0x9366D0", VA = "0x1809376D0", Slot = "27")]
|
||||
internal override bool IsValidChildType(XmlNodeType type)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x060008BD RID: 2237 RVA: 0x00005178 File Offset: 0x00003378
|
||||
[Token(Token = "0x60008BD")]
|
||||
[Address(RVA = "0x937540", Offset = "0x936540", VA = "0x180937540", Slot = "29")]
|
||||
internal override bool CanInsertAfter(XmlNode newChild, XmlNode refChild)
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
// Token: 0x060008BE RID: 2238 RVA: 0x00005190 File Offset: 0x00003390
|
||||
[Token(Token = "0x60008BE")]
|
||||
[Address(RVA = "0x9375C0", Offset = "0x9365C0", VA = "0x1809375C0", Slot = "28")]
|
||||
internal override bool CanInsertBefore(XmlNode newChild, XmlNode refChild)
|
||||
{
|
||||
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: 0x060008BF RID: 2239 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60008BF")]
|
||||
[Address(RVA = "0x68D8C0", Offset = "0x68C8C0", VA = "0x18068D8C0", 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: 0x060008C0 RID: 2240 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x60008C0")]
|
||||
[Address(RVA = "0x937780", Offset = "0x936780", VA = "0x180937780", Slot = "44")]
|
||||
public override void WriteContentTo(XmlWriter w)
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400050A RID: 1290
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x400050A")]
|
||||
private XmlLinkedNode lastChild;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user