terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
XDocumentType.cs
Go to the documentation of this file.
1using System;
3
4namespace System.Xml.Linq
5{
6 // Token: 0x0200000A RID: 10
7 public class XDocumentType : XNode
8 {
9 // Token: 0x0600004E RID: 78 RVA: 0x00002BF8 File Offset: 0x00000DF8
10 public XDocumentType(string name, string publicId, string systemId, string internalSubset)
11 {
12 if (!true)
13 {
14 }
17 this._publicId = publicId;
18 this._systemId = systemId;
19 this._internalSubset = internalSubset;
20 }
21
22 // Token: 0x0600004F RID: 79 RVA: 0x00002C34 File Offset: 0x00000E34
24 {
25 do
26 {
27 base..ctor();
28 }
29 while (other == null);
30 }
31
32 // Token: 0x17000011 RID: 17
33 // (get) Token: 0x06000050 RID: 80 RVA: 0x00002C4C File Offset: 0x00000E4C
34 public string InternalSubset
35 {
36 get
37 {
38 return this._internalSubset;
39 }
40 }
41
42 // Token: 0x17000012 RID: 18
43 // (get) Token: 0x06000051 RID: 81 RVA: 0x00002C60 File Offset: 0x00000E60
44 public string Name
45 {
46 get
47 {
48 return this._name;
49 }
50 }
51
52 // Token: 0x17000013 RID: 19
53 // (get) Token: 0x06000052 RID: 82 RVA: 0x00002C74 File Offset: 0x00000E74
54 public override XmlNodeType NodeType
55 {
56 get
57 {
58 return XmlNodeType.DocumentType;
59 }
60 }
61
62 // Token: 0x17000014 RID: 20
63 // (get) Token: 0x06000053 RID: 83 RVA: 0x00002C84 File Offset: 0x00000E84
64 public string PublicId
65 {
66 get
67 {
68 return this._publicId;
69 }
70 }
71
72 // Token: 0x17000015 RID: 21
73 // (get) Token: 0x06000054 RID: 84 RVA: 0x00002C98 File Offset: 0x00000E98
74 public string SystemId
75 {
76 get
77 {
78 return this._systemId;
79 }
80 }
81
82 // Token: 0x06000055 RID: 85 RVA: 0x00002CAC File Offset: 0x00000EAC
83 public override void WriteTo(XmlWriter writer)
84 {
85 while (writer == null)
86 {
87 }
88 string name = this._name;
89 string publicId = this._publicId;
90 string systemId = this._systemId;
91 string internalSubset = this._internalSubset;
92 }
93
94 // Token: 0x06000056 RID: 86 RVA: 0x00002367 File Offset: 0x00000567
95 internal override XNode CloneNode()
96 {
97 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
98 }
99
100 // Token: 0x0400000F RID: 15
101 private string _name;
102
103 // Token: 0x04000010 RID: 16
104 private string _publicId;
105
106 // Token: 0x04000011 RID: 17
107 private string _systemId;
108
109 // Token: 0x04000012 RID: 18
110 private string _internalSubset;
111 }
112}
class f__AnonymousType0<< Count > j__TPar
override XmlNodeType NodeType
XDocumentType(XDocumentType other)
XDocumentType(string name, string publicId, string systemId, string internalSubset)
override void WriteTo(XmlWriter writer)
static string VerifyName(string name)