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
I'm trying to serialize/deserialize a value of type Map<string, obj>, using the allowUntyped config already.
Everything is fine except when some obj is null. For example, deserializing { "hello": null } will throw System.NullReferenceException; the same for serializing Map [ ("hello", null) ].
Could you please support this particular case?
The text was updated successfully, but these errors were encountered:
I'm trying to serialize/deserialize a value of type
Map<string, obj>
, using theallowUntyped
config already.Everything is fine except when some
obj
isnull
. For example, deserializing{ "hello": null }
will throwSystem.NullReferenceException
; the same for serializingMap [ ("hello", null) ]
.Could you please support this particular case?
The text was updated successfully, but these errors were encountered: