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
MissingFieldException.cs
Go to the documentation of this file.
1using System;
3
4namespace System
5{
6 // Token: 0x02000131 RID: 305
9 {
10 // Token: 0x06000BD9 RID: 3033 RVA: 0x0001A604 File Offset: 0x00018804
12 : base("Attempted to access a non-existing field.")
13 {
14 this._HResult = 5393;
15 }
16
17 // Token: 0x06000BDA RID: 3034 RVA: 0x0001A628 File Offset: 0x00018828
18 public MissingFieldException(string message)
19 : base(message)
20 {
21 this._HResult = 5393;
22 }
23
24 // Token: 0x06000BDB RID: 3035 RVA: 0x0001A648 File Offset: 0x00018848
25 public MissingFieldException(string className, string fieldName)
26 {
27 this.ClassName = className;
29 }
30
31 // Token: 0x06000BDC RID: 3036 RVA: 0x0001A66C File Offset: 0x0001886C
33 : base(info, context)
34 {
35 }
36
37 // Token: 0x17000106 RID: 262
38 // (get) Token: 0x06000BDD RID: 3037 RVA: 0x0001A684 File Offset: 0x00018884
39 public override string Message
40 {
41 get
42 {
43 if (this.ClassName == null)
44 {
45 return base.Message;
46 }
47 string className;
48 if (this.Signature != null)
49 {
50 className = this.ClassName;
51 string text;
52 return text;
53 }
54 string memberName = this.MemberName;
55 string text2 = "" + className + "." + memberName;
56 return SR.Format("Field '{0}' not found.", text2);
57 }
58 }
59 }
60}
class f__AnonymousType0<< Count > j__TPar
static string Format(string resourceFormat, params object[] args)
Definition SR.cs:33
Definition SR.cs:7
MissingFieldException(string className, string fieldName)
MissingFieldException(SerializationInfo info, StreamingContext context)