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
{{ message }}
This repository was archived by the owner on Dec 24, 2022. It is now read-only.
By default ServiceStack Serializers will try to deserialize as much as possible without error, if you prefer you can opt-in to stricter parsing with:
487
+
488
+
```csharp
489
+
Env.StrictMode=true;
490
+
```
491
+
492
+
Where it will fail fast and throw Exceptions on deserialization errors.
493
+
484
494
## Custom Serialization
485
495
486
496
Although JsonSerializer is optimized for serializing .NET POCO types, it still provides some options to change the convention-based serialization routine.
0 commit comments