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
JsonWriterException.cs
Go to the documentation of this file.
1using System;
5
6namespace Newtonsoft.Json
7{
8 // Token: 0x0200002D RID: 45
12 {
13 // Token: 0x1700004F RID: 79
14 // (get) Token: 0x06000142 RID: 322 RVA: 0x00005764 File Offset: 0x00003964
15 // (set) Token: 0x06000143 RID: 323 RVA: 0x00005778 File Offset: 0x00003978
16 public string Path
17 {
19 get
20 {
21 return this.<Path>k__BackingField;
22 }
24 private set
25 {
27 }
28 }
29
30 // Token: 0x06000144 RID: 324 RVA: 0x0000578C File Offset: 0x0000398C
32 {
33 }
34
35 // Token: 0x06000145 RID: 325 RVA: 0x000057A0 File Offset: 0x000039A0
36 public JsonWriterException(string message)
37 : base(message)
38 {
39 }
40
41 // Token: 0x06000146 RID: 326 RVA: 0x000057B4 File Offset: 0x000039B4
43 : base(message, innerException)
44 {
45 }
46
47 // Token: 0x06000147 RID: 327 RVA: 0x000057CC File Offset: 0x000039CC
49 : base(info, context)
50 {
51 }
52
53 // Token: 0x06000148 RID: 328 RVA: 0x000057E4 File Offset: 0x000039E4
54 internal JsonWriterException(string message, Exception innerException, string path)
55 : base(message, innerException)
56 {
57 this.Path = path;
58 }
59
60 // Token: 0x06000149 RID: 329 RVA: 0x00005800 File Offset: 0x00003A00
61 internal static JsonWriterException Create(JsonWriter writer, string message, Exception ex)
62 {
64 return ex2;
65 }
66
67 // Token: 0x0600014A RID: 330 RVA: 0x00005810 File Offset: 0x00003A10
68 internal static JsonWriterException Create(string path, string message, Exception ex)
69 {
70 if (!true)
71 {
72 return;
73 }
74 }
75
76 // Token: 0x040000C5 RID: 197
78 private string <Path>k__BackingField;
79 }
80}
class f__AnonymousType0<< Count > j__TPar
static JsonWriterException Create(string path, string message, Exception ex)
JsonWriterException(string message, Exception innerException)
static JsonWriterException Create(JsonWriter writer, string message, Exception ex)
JsonWriterException(SerializationInfo info, StreamingContext context)
JsonWriterException(string message, Exception innerException, string path)