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
MissingMethodException.cs
Go to the documentation of this file.
1using System;
3
4namespace System
5{
6 // Token: 0x020000DD RID: 221
9 {
10 // Token: 0x0600083A RID: 2106 RVA: 0x00013298 File Offset: 0x00011498
12 : base("Attempted to access a missing method.")
13 {
14 this._HResult = 5395;
15 }
16
17 // Token: 0x0600083B RID: 2107 RVA: 0x000132BC File Offset: 0x000114BC
18 public MissingMethodException(string message)
19 : base(message)
20 {
21 this._HResult = 5395;
22 }
23
24 // Token: 0x0600083C RID: 2108 RVA: 0x000132DC File Offset: 0x000114DC
25 public MissingMethodException(string className, string methodName)
26 {
27 this.ClassName = className;
28 this.MemberName = methodName;
29 }
30
31 // Token: 0x0600083D RID: 2109 RVA: 0x00013300 File Offset: 0x00011500
33 : base(info, context)
34 {
35 }
36
37 // Token: 0x17000092 RID: 146
38 // (get) Token: 0x0600083E RID: 2110 RVA: 0x00013318 File Offset: 0x00011518
39 public override string Message
40 {
41 get
42 {
43 if (this.ClassName == null)
44 {
45 string text;
46 return text;
47 }
48 string memberName = this.MemberName;
49 if (this.Signature != null)
50 {
51 string text2;
52 return text2;
53 }
54 string text3;
55 return SR.Format("Method '{0}' not found.", text3);
56 }
57 }
58 }
59}
class f__AnonymousType0<< Count > j__TPar
static string Format(string resourceFormat, params object[] args)
Definition SR.cs:33
Definition SR.cs:7
MissingMethodException(string className, string methodName)
MissingMethodException(SerializationInfo info, StreamingContext context)