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 your feature request related to a problem? Please describe.
Currently we need to set each JsonSerializerOptions manually independently if we have a static method already defined.
Describe the solution you'd like
Allow for options.JsonSerializerOptions to be set so a static JsonSerializerOptions config can be reused instead of setting each property again.
Is your feature request related to a problem? Please describe.
Currently we need to set each
JsonSerializerOptions
manually independently if we have a static method already defined.Describe the solution you'd like
Allow for
options.JsonSerializerOptions
to be set so a staticJsonSerializerOptions
config can be reused instead of setting each property again.Blazored.LocalStorage.StorageOptions.LocalStorageOptions.JsonSerializerOptions
public JsonSerializerOptions JsonSerializerOptions { get; **set;** } = new JsonSerializerOptions();
Describe alternatives you've considered
Currently mapping everything manually (converters etc)
Additional context
Cleaner centralized code.
The text was updated successfully, but these errors were encountered: