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
ArgumentOutOfRangeException.cs
Go to the documentation of this file.
1using System;
3
4namespace System
5{
6 // Token: 0x02000085 RID: 133
9 {
10 // Token: 0x060003D2 RID: 978 RVA: 0x0000C00C File Offset: 0x0000A20C
12 : base("Specified argument was out of the range of valid values.")
13 {
14 this._HResult = 5378;
15 }
16
17 // Token: 0x060003D3 RID: 979 RVA: 0x0000C030 File Offset: 0x0000A230
19 : base("Specified argument was out of the range of valid values.")
20 {
22 this._HResult = 5378;
23 }
24
25 // Token: 0x060003D4 RID: 980 RVA: 0x0000C05C File Offset: 0x0000A25C
26 public ArgumentOutOfRangeException(string paramName, string message)
27 : base(message)
28 {
30 this._HResult = 5378;
31 }
32
33 // Token: 0x060003D5 RID: 981 RVA: 0x0000C084 File Offset: 0x0000A284
34 public ArgumentOutOfRangeException(string paramName, object actualValue, string message)
35 : base(message)
36 {
39 this._HResult = 5378;
40 }
41
42 // Token: 0x060003D6 RID: 982 RVA: 0x0000C0B4 File Offset: 0x0000A2B4
44 : base(info, context)
45 {
46 if (!true)
47 {
48 }
49 Type type;
50 object value = info.GetValue("ActualValue", type);
52 }
53
54 // Token: 0x060003D7 RID: 983 RVA: 0x0000C0E0 File Offset: 0x0000A2E0
56 {
57 base.GetObjectData(info, context);
58 object actualValue = this._actualValue;
59 if (!true)
60 {
61 }
62 Type type;
63 info.AddValue("ActualValue", actualValue, type);
64 }
65
66 // Token: 0x17000059 RID: 89
67 // (get) Token: 0x060003D8 RID: 984 RVA: 0x0000C10C File Offset: 0x0000A30C
68 public override string Message
69 {
70 get
71 {
72 string message = base.Message;
73 object actualValue = this._actualValue;
74 string text;
75 if (actualValue != null)
76 {
77 text = SR.Format("Actual value was {0}.", actualValue);
78 if (message != null)
79 {
80 string newLine = Environment.NewLine;
81 return message + newLine + text;
82 }
83 }
84 return text;
85 }
86 }
87
88 // Token: 0x040001DC RID: 476
89 private object _actualValue;
90 }
91}
class f__AnonymousType0<< Count > j__TPar
static string Format(string resourceFormat, params object[] args)
Definition SR.cs:33
Definition SR.cs:7
override void GetObjectData(SerializationInfo info, StreamingContext context)
ArgumentOutOfRangeException(SerializationInfo info, StreamingContext context)
ArgumentOutOfRangeException(string paramName, object actualValue, string message)
ArgumentOutOfRangeException(string paramName, string message)
static string NewLine