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
LocalDataStoreSlot.cs
Go to the documentation of this file.
1using System;
3
4namespace System
5{
6 // Token: 0x02000142 RID: 322
7 [ComVisible(true)]
8 public sealed class LocalDataStoreSlot
9 {
10 // Token: 0x06000CBA RID: 3258 RVA: 0x0001BB10 File Offset: 0x00019D10
11 internal LocalDataStoreSlot(LocalDataStoreMgr mgr, int slot, long cookie)
12 {
15 this.m_cookie = cookie;
16 }
17
18 // Token: 0x1700011B RID: 283
19 // (get) Token: 0x06000CBB RID: 3259 RVA: 0x0001BB38 File Offset: 0x00019D38
21 {
22 get
23 {
24 return this.m_mgr;
25 }
26 }
27
28 // Token: 0x1700011C RID: 284
29 // (get) Token: 0x06000CBC RID: 3260 RVA: 0x0001BB4C File Offset: 0x00019D4C
30 internal int Slot
31 {
32 get
33 {
34 return this.m_slot;
35 }
36 }
37
38 // Token: 0x1700011D RID: 285
39 // (get) Token: 0x06000CBD RID: 3261 RVA: 0x0001BB60 File Offset: 0x00019D60
40 internal long Cookie
41 {
42 get
43 {
44 return this.m_cookie;
45 }
46 }
47
48 // Token: 0x06000CBE RID: 3262 RVA: 0x0001BB74 File Offset: 0x00019D74
49 protected override void Finalize()
50 {
52 if (mgr != null)
53 {
54 int slot = this.m_slot;
55 long cookie = this.m_cookie;
56 mgr.FreeDataSlot(slot, cookie);
57 }
58 base.Finalize();
59 }
60
61 // Token: 0x040004EC RID: 1260
63
64 // Token: 0x040004ED RID: 1261
65 private int m_slot;
66
67 // Token: 0x040004EE RID: 1262
68 private long m_cookie;
69 }
70}
class f__AnonymousType0<< Count > j__TPar
void FreeDataSlot(int slot, long cookie)
LocalDataStoreSlot(LocalDataStoreMgr mgr, int slot, long cookie)