Top "Restsharp" questions

RestSharp is a simple to use REST client library for .NET

How to use RestSharp.NetCore in asp.net core

I have gone through the http://restsharp.org/ code which work greats. Below is the code of RestSharp with out …

c# asp.net-core asp.net-core-mvc restsharp
Add a GET parameter to a POST request with RestSharp

I want to make a POST request to a URL like this: http://localhost/resource?auth_token=1234 And I want …

c# .net web-services webservice-client restsharp
How to use restsharp to download file

I have a URL (URL for the live feed from client) which when I hit in browser returns the xml …

c# asp.net xml httpclient restsharp
RestSharp serialization to JSON, object is not using SerializeAs attribute as expected

I am using RestSharp (version 104.4 via NuGet) to make calls to a Rest Web Service. I have designed a set …

.net json vb.net rest restsharp
RestSharp - Authorization Header not coming across to WCF REST service

I am trying to call a locally hosted WCF REST service over HTTPS with basic auth. This works and the …

c# rest restsharp restful-authentication
RestSharp Timeout not working

I have a restsharp client and request set up like this: var request = new RestRequest(); request.Method = Method.POST; request.…

c# .net windows-services timeout restsharp
Deserialize JSON with dynamic objects

I have a JSON object that comes with a long list of area codes. Unfortunately each area code is the …

c# json restsharp
How to add json to RestSharp POST request

I have the following JSON string that is passed into my c# code as a string parameter - AddLocation(string …

c# json restsharp
How to access the HTTP request body using RestSharp?

I'm building a RESTful API client in C# .NET 3.5. I first started building it with the good old HttpWebClient (and …

c# rest .net-3.5 client restsharp
What is default timeout value of RestSharp RestClient?

Anybody aware of default timeout value of RestSharp RestClient ?

http timeout restsharp rest-client