Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetProperty() [3/3]

JsonElement System.Text.Json.JsonElement.GetProperty ( string propertyName)
inline

Definition at line 196 of file JsonElement.cs.

197 {
198 if (propertyName == null)
199 {
200 throw new ArgumentNullException("propertyName");
201 }
203 {
204 return value;
205 }
206 throw new KeyNotFoundException();
207 }
bool TryGetProperty(string propertyName, out JsonElement value)

References System.Text.Json.JsonElement.TryGetProperty(), and System.value.