We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
trying to clone JsonSerializerOptions in dotnet core 3 throws exception.
JsonNamingPolicy.CamelCase is not an enum but some crazy object.
JsonNamingPolicy.CamelCase
using System.Text.Json.Serialization; public void ShouldCloneJsonSerializationOptions() { var jsonSerializerOptions = new JsonSerializerOptions { PropertyNamingPolicy = JsonNamingPolicy.CamelCase }; JsonSerializerOptions clone = jsonSerializerOptions.Clone(); clone.PropertyNamingPolicy.ShouldBe(JsonNamingPolicy.CamelCase); }
The text was updated successfully, but these errors were encountered:
This is being looked at today, I'll follow up when the fix is merged
Sorry, something went wrong.
@replaysMike Any update on this and TimeWarpEngineering/timewarp-state#148
I'm pushing out another update to Blazor-State today.
replaysMike
No branches or pull requests
trying to clone JsonSerializerOptions in dotnet core 3 throws exception.
JsonNamingPolicy.CamelCase
is not an enum but some crazy object.The text was updated successfully, but these errors were encountered: