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

◆ GetClosestMatchProperty()

JsonProperty Newtonsoft.Json.Serialization.JsonPropertyCollection.GetClosestMatchProperty ( string propertyName)
inline

Definition at line 75 of file JsonPropertyCollection.cs.

76 {
77 JsonProperty property = this.GetProperty(propertyName, StringComparison.Ordinal);
78 if (property != null)
79 {
80 return property;
81 }
82 return this.GetProperty(propertyName, StringComparison.OrdinalIgnoreCase);
83 }
class f__AnonymousType0<< Count > j__TPar
JsonProperty GetProperty(string propertyName, StringComparison comparisonType)

References Newtonsoft.Json.Serialization.JsonPropertyCollection.GetProperty(), and j__TPar.