You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
627 B
24 lines
627 B
using System.Text.Json; |
|
using System.Text.Json.Nodes; |
|
|
|
namespace StabilityMatrix.Core.Extensions; |
|
|
|
public static class JsonObjectExtensions |
|
{ |
|
/// <summary> |
|
/// Returns the value of a property with the specified name, or the specified default value if not found. |
|
/// </summary> |
|
public static T? GetPropertyValueOrDefault<T>( |
|
this JsonObject jsonObject, |
|
string propertyName, |
|
T? defaultValue = default |
|
) |
|
{ |
|
if (!jsonObject.TryGetPropertyValue(propertyName, out var node)) |
|
{ |
|
return defaultValue; |
|
} |
|
|
|
return node.Deserialize<T>(); |
|
} |
|
}
|
|
|