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

◆ this[string propertyName]

JToken Newtonsoft.Json.Linq.JObject.this[string propertyName]
getset

Definition at line 309 of file JObject.cs.

310 {
311 get
312 {
314 JProperty jproperty = this.Property(propertyName);
316 if (jproperty != null)
317 {
318 value = jproperty.Value;
319 return value;
320 }
321 return value;
322 }
323 set
324 {
325 JProperty jproperty = this.Property(propertyName);
326 if (jproperty != null)
327 {
329 return;
330 }
331 }
332 }
class f__AnonymousType0<< Count > j__TPar
class< GetEnumerator > JToken
Definition JObject.cs:767
static void ArgumentNotNull(object value, string parameterName)