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
Copy file name to clipboardExpand all lines: docs/usage/serialization.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,27 @@ property of the response. Read more about it in the [Error Handling](exceptions.
10
10
11
11
## Default Serializers
12
12
13
+
RestSharp core package includes a few default serializers for both JSON and XML formats.
14
+
15
+
### JSON
16
+
13
17
The default JSON serializer uses the forked version of `SimpleJson`. It is very simplistic and
14
18
doesn't handle advanced scenarios in many cases. We do not plan to fix or add new features
15
19
to the default JSON serializer, since it handles a lot of cases already and when you need
16
20
to handle more complex objects, please consider using alternative JSON serializers mentioned below.
17
21
22
+
There's a [known issue](https://github.com/restsharp/RestSharp/issues/1433) that SimpleJson doesn't use the UTC time zone when the regular .NET date format
23
+
is used (`yyyy-MM-ddTHH:mm:ssZ`). As suggested in the issue, it can be solved by setting the
0 commit comments