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
Is it possible to provide a custom serializer for objects of type object and dynamic?
It seems objects of those types gets ignored by ignoreCustomSerialization.
The text was updated successfully, but these errors were encountered:
able to workaround this problem with additional members having the actual type defined:
publicdynamicdynVal{ get;privateset;}publicobjectobjVal;publicExpandoObjectDynValFix{get => dynVal as ExpandoObject;set =>dynVal= value as ExpandoObject;}publicExpandoObjectObjValFix{get => objVal as ExpandoObject;set =>objVal= value as ExpandoObject;}
Is it possible to provide a custom serializer for objects of type
object
anddynamic
?It seems objects of those types gets ignored by
ignoreCustomSerialization
.The text was updated successfully, but these errors were encountered: