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
JsonConverter.cs
Go to the documentation of this file.
1using System;
3
4namespace Newtonsoft.Json
5{
6 // Token: 0x0200002F RID: 47
8 public abstract class JsonConverter
9 {
10 // Token: 0x06000159 RID: 345
11 public abstract void WriteJson(JsonWriter writer, object value, JsonSerializer serializer);
12
13 // Token: 0x0600015A RID: 346
14 public abstract object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer);
15
16 // Token: 0x0600015B RID: 347
17 public abstract bool CanConvert(Type objectType);
18
19 // Token: 0x17000053 RID: 83
20 // (get) Token: 0x0600015C RID: 348 RVA: 0x00005950 File Offset: 0x00003B50
21 public virtual bool CanRead
22 {
23 get
24 {
25 return true;
26 }
27 }
28
29 // Token: 0x17000054 RID: 84
30 // (get) Token: 0x0600015D RID: 349 RVA: 0x00005960 File Offset: 0x00003B60
31 public virtual bool CanWrite
32 {
33 get
34 {
35 return true;
36 }
37 }
38
39 // Token: 0x0600015E RID: 350 RVA: 0x00005970 File Offset: 0x00003B70
40 protected JsonConverter()
41 {
42 }
43 }
44}
class f__AnonymousType0<< Count > j__TPar
bool CanConvert(Type objectType)
object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)