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
XmlComment.cs
Go to the documentation of this file.
1using System;
3
4namespace System.Xml
5{
6 // Token: 0x02000068 RID: 104
8 {
9 // Token: 0x060004AD RID: 1197 RVA: 0x00011988 File Offset: 0x0000FB88
10 protected internal XmlComment(string comment, XmlDocument doc)
11 : base(doc)
12 {
13 this.data = comment;
14 }
15
16 // Token: 0x17000101 RID: 257
17 // (get) Token: 0x060004AE RID: 1198 RVA: 0x00003FFD File Offset: 0x000021FD
18 public override string Name
19 {
20 get
21 {
22 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
23 }
24 }
25
26 // Token: 0x17000102 RID: 258
27 // (get) Token: 0x060004AF RID: 1199 RVA: 0x00003FFD File Offset: 0x000021FD
28 public override string LocalName
29 {
30 get
31 {
32 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
33 }
34 }
35
36 // Token: 0x17000103 RID: 259
37 // (get) Token: 0x060004B0 RID: 1200 RVA: 0x000119A4 File Offset: 0x0000FBA4
38 public override XmlNodeType NodeType
39 {
40 get
41 {
42 return XmlNodeType.Comment;
43 }
44 }
45
46 // Token: 0x060004B1 RID: 1201 RVA: 0x00003FFD File Offset: 0x000021FD
47 public override XmlNode CloneNode(bool deep)
48 {
49 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
50 }
51 }
52}
class f__AnonymousType0<< Count > j__TPar
override string Name
Definition XmlComment.cs:19
override XmlNodeType NodeType
Definition XmlComment.cs:39
XmlComment(string comment, XmlDocument doc)
Definition XmlComment.cs:10
override XmlNode CloneNode(bool deep)
Definition XmlComment.cs:47
override string LocalName
Definition XmlComment.cs:29