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

◆ TryGetProperty() [3/3]

bool System.Text.Json.JsonElement.TryGetProperty ( string propertyName,
out JsonElement value )
inline

Definition at line 227 of file JsonElement.cs.

228 {
229 if (propertyName == null)
230 {
231 throw new ArgumentNullException("propertyName");
232 }
233 return TryGetProperty(propertyName.AsSpan(), out value);
234 }
bool TryGetProperty(string propertyName, out JsonElement value)

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

Referenced by System.Text.Json.JsonElement.GetProperty(), System.Text.Json.JsonElement.GetProperty(), System.Text.Json.JsonElement.GetProperty(), and System.Text.Json.JsonElement.TryGetProperty().