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
XText.cs
Go to the documentation of this file.
1using System;
2using System.Text;
4
5namespace System.Xml.Linq
6{
7 // Token: 0x0200001E RID: 30
8 public class XText : XNode
9 {
10 // Token: 0x060000C7 RID: 199 RVA: 0x00003C6C File Offset: 0x00001E6C
11 public XText(string value)
12 {
13 do
14 {
15 base..ctor();
16 }
17 while (value == null);
19 }
20
21 // Token: 0x060000C8 RID: 200 RVA: 0x00003C8C File Offset: 0x00001E8C
23 {
24 do
25 {
26 base..ctor();
27 }
28 while (other == null);
29 string text = other.text;
31 }
32
33 // Token: 0x17000028 RID: 40
34 // (get) Token: 0x060000C9 RID: 201 RVA: 0x00003CB0 File Offset: 0x00001EB0
35 public override XmlNodeType NodeType
36 {
37 get
38 {
39 return XmlNodeType.Text;
40 }
41 }
42
43 // Token: 0x17000029 RID: 41
44 // (get) Token: 0x060000CA RID: 202 RVA: 0x00003CC0 File Offset: 0x00001EC0
45 // (set) Token: 0x060000CB RID: 203 RVA: 0x00003CD4 File Offset: 0x00001ED4
46 public string Value
47 {
48 get
49 {
50 return this.text;
51 }
52 set
53 {
54 while (value == null)
55 {
56 }
57 if (!true)
58 {
59 }
61 if (!true)
62 {
63 }
64 }
65 }
66
67 // Token: 0x060000CC RID: 204 RVA: 0x00003CF4 File Offset: 0x00001EF4
68 public override void WriteTo(XmlWriter writer)
69 {
70 while (writer == null)
71 {
72 }
73 if (this.parent != null)
74 {
75 }
76 string text = this.text;
77 }
78
79 // Token: 0x060000CD RID: 205 RVA: 0x00003D1C File Offset: 0x00001F1C
80 internal override void AppendText(StringBuilder sb)
81 {
82 string text = this.text;
83 StringBuilder stringBuilder = sb.Append(text);
84 }
85
86 // Token: 0x060000CE RID: 206 RVA: 0x00002367 File Offset: 0x00000567
87 internal override XNode CloneNode()
88 {
89 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
90 }
91
92 // Token: 0x0400004E RID: 78
93 internal string text;
94 }
95}
class f__AnonymousType0<< Count > j__TPar
StringBuilder Append(char value, int repeatCount)
override void AppendText(StringBuilder sb)
Definition XText.cs:80
XText(string value)
Definition XText.cs:11
XText(XText other)
Definition XText.cs:22
override void WriteTo(XmlWriter writer)
Definition XText.cs:68
override XmlNodeType NodeType
Definition XText.cs:36
override XNode CloneNode()
Definition XText.cs:87