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
Claim.cs
Go to the documentation of this file.
1using System;
7
9{
10 // Token: 0x0200032D RID: 813
11 [Serializable]
12 public class Claim
13 {
14 // Token: 0x06001B70 RID: 7024 RVA: 0x0003ADF8 File Offset: 0x00038FF8
15 public Claim(string type, string value, string valueType, string issuer, string originalIssuer, ClaimsIdentity subject)
16 {
17 }
18
19 // Token: 0x06001B71 RID: 7025 RVA: 0x0003AE08 File Offset: 0x00039008
20 internal Claim(string type, string value, string valueType, string issuer, string originalIssuer, ClaimsIdentity subject, string propertyKey, string propertyValue)
21 {
22 do
23 {
24 base..ctor();
25 if (type == null)
26 {
27 return;
28 }
29 }
30 while (value == null);
31 this.m_type = type;
33 bool flag = string.IsNullOrEmpty(valueType);
34 this.m_valueType = "http://www.w3.org/2001/XMLSchema#string";
35 }
36
37 // Token: 0x06001B72 RID: 7026 RVA: 0x0003AEA0 File Offset: 0x000390A0
38 protected Claim(Claim other, ClaimsIdentity subject)
39 {
40 if (other == null)
41 {
42 return;
43 }
44 string issuer = other.m_issuer;
45 this.m_subject = subject;
46 this.m_issuer = issuer;
47 string type = other.m_type;
48 this.m_type = type;
49 string valueType = other.m_valueType;
51 if (other.m_properties != null)
52 {
53 Dictionary<string, string> properties = other.m_properties;
56 return;
57 }
58 if (other.m_userSerializationData != null)
59 {
60 object obj;
62 }
63 }
64
65 // Token: 0x06001B73 RID: 7027 RVA: 0x0003AF2C File Offset: 0x0003912C
66 [OnDeserialized]
68 {
69 }
70
71 // Token: 0x17000316 RID: 790
72 // (get) Token: 0x06001B74 RID: 7028 RVA: 0x0003AF3C File Offset: 0x0003913C
74 {
75 get
76 {
77 if (this.m_properties == null)
78 {
79 object propertyLock = this.m_propertyLock;
80 if (this.m_properties != null)
81 {
82 }
83 long num = 0L;
85 if (num == 0L)
86 {
88 }
89 }
90 throw new OutOfMemoryException();
91 }
92 }
93
94 // Token: 0x17000317 RID: 791
95 // (get) Token: 0x06001B75 RID: 7029 RVA: 0x0003AF94 File Offset: 0x00039194
96 // (set) Token: 0x06001B76 RID: 7030 RVA: 0x0003AFA8 File Offset: 0x000391A8
98 {
99 get
100 {
101 return this.m_subject;
102 }
103 internal set
104 {
106 }
107 }
108
109 // Token: 0x17000318 RID: 792
110 // (get) Token: 0x06001B77 RID: 7031 RVA: 0x0003AFBC File Offset: 0x000391BC
111 public string Type
112 {
113 get
114 {
115 return this.m_type;
116 }
117 }
118
119 // Token: 0x17000319 RID: 793
120 // (get) Token: 0x06001B78 RID: 7032 RVA: 0x0003AFD0 File Offset: 0x000391D0
121 public string Value
122 {
123 get
124 {
125 return this.m_value;
126 }
127 }
128
129 // Token: 0x06001B79 RID: 7033 RVA: 0x0000207A File Offset: 0x0000027A
130 public virtual Claim Clone(ClaimsIdentity identity)
131 {
132 throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
133 }
134
135 // Token: 0x06001B7A RID: 7034 RVA: 0x0003AFE4 File Offset: 0x000391E4
136 public override string ToString()
137 {
138 if (!true)
139 {
140 }
142 string type = this.m_type;
143 string value = this.m_value;
144 return string.Format(invariantCulture, "{0}: {1}", type, value);
145 }
146
147 // Token: 0x04000DF7 RID: 3575
148 private string m_issuer;
149
150 // Token: 0x04000DF8 RID: 3576
151 private string m_originalIssuer;
152
153 // Token: 0x04000DF9 RID: 3577
154 private string m_type;
155
156 // Token: 0x04000DFA RID: 3578
157 private string m_value;
158
159 // Token: 0x04000DFB RID: 3579
160 private string m_valueType;
161
162 // Token: 0x04000DFC RID: 3580
165
166 // Token: 0x04000DFD RID: 3581
168
169 // Token: 0x04000DFE RID: 3582
171 private object m_propertyLock;
172
173 // Token: 0x04000DFF RID: 3583
176 }
177}
class f__AnonymousType0<< Count > j__TPar
static CultureInfo InvariantCulture
void OnDeserializedMethod(StreamingContext context)
Definition Claim.cs:67
Dictionary< string, string > m_properties
Definition Claim.cs:167
virtual Claim Clone(ClaimsIdentity identity)
Definition Claim.cs:130
Claim(Claim other, ClaimsIdentity subject)
Definition Claim.cs:38
Claim(string type, string value, string valueType, string issuer, string originalIssuer, ClaimsIdentity subject)
Definition Claim.cs:15
Claim(string type, string value, string valueType, string issuer, string originalIssuer, ClaimsIdentity subject, string propertyKey, string propertyValue)
Definition Claim.cs:20
ClaimsIdentity m_subject
Definition Claim.cs:175
IDictionary< string, string > Properties
Definition Claim.cs:74
override string ToString()
Definition Claim.cs:136
ClaimsIdentity Subject
Definition Claim.cs:98
static void Exit(object obj)
Definition Monitor.cs:47