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
If this is still installed in your project and no other libraries depend on it you may remove it from your installed packages.
6
+
7
+
There is one breaking change: the default JsonSerializer is no longer compatible with Json.NET. To use Json.NET for serialization, copy the code from https://github.com/restsharp/RestSharp/blob/86b31f9adf049d7fb821de8279154f41a17b36f7/RestSharp/Serializers/JsonSerializer.cs and register it with your client:
8
+
9
+
var client = new RestClient();
10
+
client.JsonSerializer = new YourCustomSerializer();
11
+
12
+
If you run into any compatibility issues with deserialization, please report it to http://groups.google.com/group/restsharp
0 commit comments