We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4afd1cf commit ba374a1Copy full SHA for ba374a1
src/Polly.Caching.Serialization.System.Text.Json/JsonSerializer.cs
@@ -27,7 +27,7 @@ public JsonSerializer(JsonSerializerOptions jsonSerializerOptions)
27
/// <returns>The deserialized object</returns>
28
public TResult Deserialize(string objectToDeserialize)
29
{
30
- return JsonSerializer.Deserialize<TResult>(objectToDeserialize);
+ return JsonSerializer.Deserialize<TResult>(objectToDeserialize, _jsonSerializerOptions);
31
}
32
33
/// <summary>
0 commit comments