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
XCData.cs
Go to the documentation of this file.
1using System;
3
4namespace System.Xml.Linq
5{
6 // Token: 0x02000004 RID: 4
7 public class XCData : XText
8 {
9 // Token: 0x0600000C RID: 12 RVA: 0x00002318 File Offset: 0x00000518
10 public XCData(string value)
11 : base(value)
12 {
13 }
14
15 // Token: 0x0600000D RID: 13 RVA: 0x0000232C File Offset: 0x0000052C
17 : base(other)
18 {
19 }
20
21 // Token: 0x17000005 RID: 5
22 // (get) Token: 0x0600000E RID: 14 RVA: 0x00002340 File Offset: 0x00000540
23 public override XmlNodeType NodeType
24 {
25 get
26 {
27 return XmlNodeType.CDATA;
28 }
29 }
30
31 // Token: 0x0600000F RID: 15 RVA: 0x00002350 File Offset: 0x00000550
32 public override void WriteTo(XmlWriter writer)
33 {
34 while (writer == null)
35 {
36 }
37 string text = this.text;
38 }
39
40 // Token: 0x06000010 RID: 16 RVA: 0x00002367 File Offset: 0x00000567
41 internal override XNode CloneNode()
42 {
43 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
44 }
45 }
46}
class f__AnonymousType0<< Count > j__TPar
override XNode CloneNode()
Definition XCData.cs:41
XCData(string value)
Definition XCData.cs:10
override XmlNodeType NodeType
Definition XCData.cs:24
override void WriteTo(XmlWriter writer)
Definition XCData.cs:32
XCData(XCData other)
Definition XCData.cs:16