Files
27Aug2021-Cpp2IL-Dump/System.Xml.Linq/XDocumentType.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

116 lines
3.9 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Xml.Linq
{
/// <summary>Represents an XML Document Type Definition (DTD).</summary>
// Token: 0x02000019 RID: 25
[Token(Token = "0x2000019")]
public class XDocumentType : XNode
{
/// <summary>Gets or sets the internal subset for this Document Type Definition (DTD).</summary>
/// <returns>A <see cref="T:System.String" /> that contains the internal subset for this Document Type Definition (DTD).</returns>
// Token: 0x17000022 RID: 34
// (get) Token: 0x0600007C RID: 124 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x17000022")]
public string InternalSubset
{
[Token(Token = "0x600007C")]
[Address(RVA = "0x417680", Offset = "0x416680", VA = "0x180417680")]
get
{
return null;
}
}
/// <summary>Gets or sets the name for this Document Type Definition (DTD).</summary>
/// <returns>A <see cref="T:System.String" /> that contains the name for this Document Type Definition (DTD).</returns>
// Token: 0x17000023 RID: 35
// (get) Token: 0x0600007D RID: 125 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x17000023")]
public string Name
{
[Token(Token = "0x600007D")]
[Address(RVA = "0x4157D0", Offset = "0x4147D0", VA = "0x1804157D0")]
get
{
return null;
}
}
/// <summary>Gets the node type for this node.</summary>
/// <returns>The node type. For <see cref="T:System.Xml.Linq.XDocumentType" /> objects, this value is <see cref="F:System.Xml.XmlNodeType.DocumentType" />.</returns>
// Token: 0x17000024 RID: 36
// (get) Token: 0x0600007E RID: 126 RVA: 0x000022B0 File Offset: 0x000004B0
[Token(Token = "0x17000024")]
public override XmlNodeType NodeType
{
[Token(Token = "0x600007E")]
[Address(RVA = "0x7CCD10", Offset = "0x7CBD10", VA = "0x1807CCD10", Slot = "6")]
get
{
return XmlNodeType.None;
}
}
/// <summary>Gets or sets the public identifier for this Document Type Definition (DTD).</summary>
/// <returns>A <see cref="T:System.String" /> that contains the public identifier for this Document Type Definition (DTD).</returns>
// Token: 0x17000025 RID: 37
// (get) Token: 0x0600007F RID: 127 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x17000025")]
public string PublicId
{
[Token(Token = "0x600007F")]
[Address(RVA = "0x4157E0", Offset = "0x4147E0", VA = "0x1804157E0")]
get
{
return null;
}
}
/// <summary>Gets or sets the system identifier for this Document Type Definition (DTD).</summary>
/// <returns>A <see cref="T:System.String" /> that contains the system identifier for this Document Type Definition (DTD).</returns>
// Token: 0x17000026 RID: 38
// (get) Token: 0x06000080 RID: 128 RVA: 0x00002052 File Offset: 0x00000252
[Token(Token = "0x17000026")]
public string SystemId
{
[Token(Token = "0x6000080")]
[Address(RVA = "0x41CEF0", Offset = "0x41BEF0", VA = "0x18041CEF0")]
get
{
return null;
}
}
/// <summary>Write this <see cref="T:System.Xml.Linq.XDocumentType" /> 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: 0x06000081 RID: 129 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000081")]
[Address(RVA = "0x11CB240", Offset = "0x11CA240", VA = "0x1811CB240", Slot = "7")]
public override void WriteTo(XmlWriter writer)
{
}
// Token: 0x0400003D RID: 61
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x400003D")]
private string name;
// Token: 0x0400003E RID: 62
[FieldOffset(Offset = "0x30")]
[Token(Token = "0x400003E")]
private string publicId;
// Token: 0x0400003F RID: 63
[FieldOffset(Offset = "0x38")]
[Token(Token = "0x400003F")]
private string systemId;
// Token: 0x04000040 RID: 64
[FieldOffset(Offset = "0x40")]
[Token(Token = "0x4000040")]
private string internalSubset;
}
}