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.
1
using
System
;
2
using
Cpp2IlInjected
;
3
4
namespace
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
}
15
string
text
=
XmlConvert
.
VerifyName
(
name
);
16
this._name
=
text
;
17
this._publicId
= publicId;
18
this._systemId
= systemId;
19
this._internalSubset
= internalSubset;
20
}
21
22
// Token: 0x0600004F RID: 79 RVA: 0x00002C34 File Offset: 0x00000E34
23
public
XDocumentType
(
XDocumentType
other
)
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
}
j__TPar
class f__AnonymousType0<< Count > j__TPar
Definition
--f__AnonymousType0.cs:8
Cpp2IlInjected.AnalysisFailedException
Definition
AnalysisFailedException.cs:7
System.Xml.Linq.XDocumentType.SystemId
string SystemId
Definition
XDocumentType.cs:75
System.Xml.Linq.XDocumentType._systemId
string _systemId
Definition
XDocumentType.cs:107
System.Xml.Linq.XDocumentType.InternalSubset
string InternalSubset
Definition
XDocumentType.cs:35
System.Xml.Linq.XDocumentType._name
string _name
Definition
XDocumentType.cs:101
System.Xml.Linq.XDocumentType.PublicId
string PublicId
Definition
XDocumentType.cs:65
System.Xml.Linq.XDocumentType.CloneNode
override XNode CloneNode()
Definition
XDocumentType.cs:95
System.Xml.Linq.XDocumentType.NodeType
override XmlNodeType NodeType
Definition
XDocumentType.cs:55
System.Xml.Linq.XDocumentType._publicId
string _publicId
Definition
XDocumentType.cs:104
System.Xml.Linq.XDocumentType.XDocumentType
XDocumentType(XDocumentType other)
Definition
XDocumentType.cs:23
System.Xml.Linq.XDocumentType.XDocumentType
XDocumentType(string name, string publicId, string systemId, string internalSubset)
Definition
XDocumentType.cs:10
System.Xml.Linq.XDocumentType.WriteTo
override void WriteTo(XmlWriter writer)
Definition
XDocumentType.cs:83
System.Xml.Linq.XDocumentType.Name
string Name
Definition
XDocumentType.cs:45
System.Xml.Linq.XDocumentType._internalSubset
string _internalSubset
Definition
XDocumentType.cs:110
System.Xml.Linq.XDocumentType
Definition
XDocumentType.cs:8
System.Xml.Linq.XNode
Definition
XNode.cs:9
System.Xml.XmlConvert.VerifyName
static string VerifyName(string name)
Definition
XmlConvert.cs:135
System.Xml.XmlConvert
Definition
XmlConvert.cs:12
System.Xml.XmlWriter
Definition
XmlWriter.cs:8
Cpp2IlInjected
Definition
AnalysisFailedException.cs:4
System.Xml.Linq
Definition
ElementWriter.cs:4
System.Xml.XmlNodeType
XmlNodeType
Definition
XmlNodeType.cs:7
System.ExceptionArgument.text
@ text
System.ExceptionArgument.name
@ name
System
Definition
__ComObject.cs:4
source
System.Xml.Linq
System
Xml
Linq
XDocumentType.cs
Generated by
1.10.0