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
BsonValue.cs
Go to the documentation of this file.
1using System;
3
5{
6 // Token: 0x02000126 RID: 294
8 internal class BsonValue : BsonToken
9 {
10 // Token: 0x06000B73 RID: 2931 RVA: 0x0001BBA4 File Offset: 0x00019DA4
11 public BsonValue(object value, BsonType type)
12 {
14 this._type = type;
15 }
16
17 // Token: 0x17000235 RID: 565
18 // (get) Token: 0x06000B74 RID: 2932 RVA: 0x0001BBC8 File Offset: 0x00019DC8
19 public object Value
20 {
21 get
22 {
23 return this._value;
24 }
25 }
26
27 // Token: 0x17000236 RID: 566
28 // (get) Token: 0x06000B75 RID: 2933 RVA: 0x0001BBDC File Offset: 0x00019DDC
29 public override BsonType Type
30 {
31 get
32 {
33 return this._type;
34 }
35 }
36
37 // Token: 0x04000450 RID: 1104
38 private readonly object _value;
39
40 // Token: 0x04000451 RID: 1105
42 }
43}
class f__AnonymousType0<< Count > j__TPar
readonly BsonType _type
Definition BsonValue.cs:41
BsonValue(object value, BsonType type)
Definition BsonValue.cs:11