Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

56 lines
2.0 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml.Linq
{
/// <summary>Represents an XML document. For the components and usage of an <see cref="T:System.Xml.Linq.XDocument" /> object, see XDocument Class Overview.</summary>
// Token: 0x02000015 RID: 21
[Token(Token = "0x2000015")]
public class XDocument : XContainer
{
/// <summary>Gets or sets the XML declaration for this document.</summary>
/// <returns>An <see cref="T:System.Xml.Linq.XDeclaration" /> that contains the XML declaration for this document.</returns>
// Token: 0x17000018 RID: 24
// (get) Token: 0x0600006F RID: 111 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x17000018")]
public XDeclaration Declaration
{
[Token(Token = "0x600006F")]
[Address(RVA = "0x4157E0", Offset = "0x4147E0", VA = "0x1804157E0")]
get
{
return null;
}
}
/// <summary>Gets the node type for this node.</summary>
/// <returns>The node type. For <see cref="T:System.Xml.Linq.XDocument" /> objects, this value is <see cref="F:System.Xml.XmlNodeType.Document" />.</returns>
// Token: 0x17000019 RID: 25
// (get) Token: 0x06000070 RID: 112 RVA: 0x00002268 File Offset: 0x00000468
[Token(Token = "0x17000019")]
public override XmlNodeType NodeType
{
[Token(Token = "0x6000070")]
[Address(RVA = "0x68E020", Offset = "0x68D020", VA = "0x18068E020", Slot = "6")]
get
{
return XmlNodeType.None;
}
}
/// <summary>Write this document to an <see cref="T:System.Xml.XmlWriter" />.</summary>
/// <param name="writer">An <see cref="T:System.Xml.XmlWriter" /> into which this method will write.</param>
// Token: 0x06000071 RID: 113 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000071")]
[Address(RVA = "0x11CB2E0", Offset = "0x11CA2E0", VA = "0x1811CB2E0", Slot = "7")]
public override void WriteTo(XmlWriter writer)
{
}
// Token: 0x04000036 RID: 54
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x4000036")]
private XDeclaration declaration;
}
}