using System;
using Cpp2IlInjected;
namespace System.Xml.Linq
{
/// Represents an XML document. For the components and usage of an object, see XDocument Class Overview.
// Token: 0x02000015 RID: 21
[Token(Token = "0x2000015")]
public class XDocument : XContainer
{
/// Gets or sets the XML declaration for this document.
/// An that contains the XML declaration for this document.
// 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;
}
}
/// Gets the node type for this node.
/// The node type. For objects, this value is .
// 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;
}
}
/// Write this document to an .
/// An into which this method will write.
// 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;
}
}