Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

RestSharp extensions to use Newtonsoft.Json for serialization/deserialization.

License

Notifications You must be signed in to change notification settings

i4004/RestSharp.Newtonsoft.Json.Extensions

Repository files navigation

This package is now deprecated, because there is good official alternative exist, please use the official package.

RestSharp.Newtonsoft.Json.Extensions

Nuget Version Nuget Download AppVeyor branch Libraries.io dependency status for latest release CodeFactor Grade Dependabot Status Platform

RestSharp.Newtonsoft.Json.Extensions - is an extensions for RestSharp to use Newtonsoft.Json for serialization/deserialization.

Usage

Registration for serialization

IRestRequest request = /* ... */;
request.UseNewtonsoftJsonSerializer();

Registration for deserialization

IRestClient сlient = /* ... */;
client.UseNewtonsoftJsonDeserializer();