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
TrackingStringDictionary.cs
Go to the documentation of this file.
1using System;
3
4namespace System.Net
5{
6 // Token: 0x0200013A RID: 314
7 internal sealed class TrackingStringDictionary : global::System.Collections.Specialized.StringDictionary
8 {
9 // Token: 0x06000776 RID: 1910 RVA: 0x0001AABC File Offset: 0x00018CBC
11 {
12 }
13
14 // Token: 0x06000777 RID: 1911 RVA: 0x0001AAD0 File Offset: 0x00018CD0
15 internal TrackingStringDictionary(bool isReadOnly)
16 {
17 }
18
19 // Token: 0x1700018E RID: 398
20 // (get) Token: 0x06000778 RID: 1912 RVA: 0x0001AAE4 File Offset: 0x00018CE4
21 // (set) Token: 0x06000779 RID: 1913 RVA: 0x0001AAF8 File Offset: 0x00018CF8
22 internal bool IsChanged
23 {
24 get
25 {
26 return this._isChanged;
27 }
28 set
29 {
30 }
31 }
32
33 // Token: 0x0600077A RID: 1914 RVA: 0x0001AB08 File Offset: 0x00018D08
34 public override void Add(string key, string value)
35 {
36 while (this._isReadOnly)
37 {
38 }
39 base.Add(key, value);
40 this._isChanged = true;
41 }
42
43 // Token: 0x0600077B RID: 1915 RVA: 0x0001AB2C File Offset: 0x00018D2C
44 public override void Clear()
45 {
46 while (this._isReadOnly)
47 {
48 }
49 base.Clear();
50 this._isChanged = true;
51 }
52
53 // Token: 0x0600077C RID: 1916 RVA: 0x0001AB50 File Offset: 0x00018D50
54 public override void Remove(string key)
55 {
56 while (this._isReadOnly)
57 {
58 }
59 base.Remove(key);
60 this._isChanged = true;
61 }
62
63 // Token: 0x1700018F RID: 399
64 public override string this[string key]
65 {
66 get
67 {
68 return base[key];
69 }
70 set
71 {
72 while (this._isReadOnly)
73 {
74 }
75 base[key] = value;
76 this._isChanged = true;
77 }
78 }
79
80 // Token: 0x040005ED RID: 1517
81 private readonly bool _isReadOnly;
82
83 // Token: 0x040005EE RID: 1518
84 private bool _isChanged;
85 }
86}
class f__AnonymousType0<< Count > j__TPar
override void Add(string key, string value)