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
ArgumentException.cs
Go to the documentation of this file.
1using System;
3
4namespace System
5{
6 // Token: 0x02000083 RID: 131
9 {
10 // Token: 0x060003C6 RID: 966 RVA: 0x0000BE3C File Offset: 0x0000A03C
12 : base("Value does not fall within the expected range.")
13 {
14 this._HResult = 87;
15 }
16
17 // Token: 0x060003C7 RID: 967 RVA: 0x0000BE5C File Offset: 0x0000A05C
18 public ArgumentException(string message)
19 : base(message)
20 {
21 this._HResult = 87;
22 }
23
24 // Token: 0x060003C8 RID: 968 RVA: 0x0000BE78 File Offset: 0x0000A078
26 : base(message, innerException)
27 {
28 this._HResult = 87;
29 }
30
31 // Token: 0x060003C9 RID: 969 RVA: 0x0000BE98 File Offset: 0x0000A098
32 public ArgumentException(string message, string paramName, Exception innerException)
33 : base(message, innerException)
34 {
36 this._HResult = 87;
37 }
38
39 // Token: 0x060003CA RID: 970 RVA: 0x0000BEBC File Offset: 0x0000A0BC
40 public ArgumentException(string message, string paramName)
41 : base(message)
42 {
44 this._HResult = 87;
45 }
46
47 // Token: 0x060003CB RID: 971 RVA: 0x0000BEE0 File Offset: 0x0000A0E0
49 : base(info, context)
50 {
51 string @string = info.GetString("ParamName");
52 this._paramName = @string;
53 }
54
55 // Token: 0x060003CC RID: 972 RVA: 0x0000BF08 File Offset: 0x0000A108
57 {
58 base.GetObjectData(info, context);
59 string paramName = this._paramName;
60 if (!true)
61 {
62 }
63 Type type;
64 info.AddValue("ParamName", paramName, type);
65 }
66
67 // Token: 0x17000058 RID: 88
68 // (get) Token: 0x060003CD RID: 973 RVA: 0x0000BF34 File Offset: 0x0000A134
69 public override string Message
70 {
71 get
72 {
73 string message = base.Message;
74 bool flag = string.IsNullOrEmpty(this._paramName);
75 return message;
76 }
77 }
78
79 // Token: 0x040001DB RID: 475
80 private string _paramName;
81 }
82}
class f__AnonymousType0<< Count > j__TPar
ArgumentException(string message, string paramName)
ArgumentException(SerializationInfo info, StreamingContext context)
override void GetObjectData(SerializationInfo info, StreamingContext context)
ArgumentException(string message, string paramName, Exception innerException)
ArgumentException(string message)
ArgumentException(string message, Exception innerException)