You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The System.Text.Json NullableConverter<T> incorrectly declares itself as a value converter, even though this only applies to cases where the T type uses a value converter itself. This means that nullable struct serialization does not flow serialization state correctly, which can result in async serialization not performing as expected.
The text was updated successfully, but these errors were encountered:
Tagging subscribers to this area: @dotnet/area-system-text-json
See info in area-owners.md if you want to be subscribed.
Issue Details
The System.Text.Json NullableConverter<T> incorrectly declares itself as a value converter, even though this only applies to cases where the T type uses a value converter itself. This means that nullable struct serialization does not flow serialization state correctly, which can result in async serialization not performing as expected.
The System.Text.Json
NullableConverter<T>
incorrectly declares itself as a value converter, even though this only applies to cases where theT
type uses a value converter itself. This means that nullable struct serialization does not flow serialization state correctly, which can result in async serialization not performing as expected.The text was updated successfully, but these errors were encountered: