DalSoft.RestClient 1.0.4.41175

There is a newer version of this package available.
See the version list below for details.
dotnet add package DalSoft.RestClient --version 1.0.4.41175
                    
NuGet\Install-Package DalSoft.RestClient -Version 1.0.4.41175
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DalSoft.RestClient" Version="1.0.4.41175" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="DalSoft.RestClient" Version="1.0.4.41175" />
                    
Directory.Packages.props
<PackageReference Include="DalSoft.RestClient" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add DalSoft.RestClient --version 1.0.4.41175
                    
#r "nuget: DalSoft.RestClient, 1.0.4.41175"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=DalSoft.RestClient&version=1.0.4.41175
                    
Install DalSoft.RestClient as a Cake Addin
#tool nuget:?package=DalSoft.RestClient&version=1.0.4.41175
                    
Install DalSoft.RestClient as a Cake Tool

Dynamic Rest Client with fluent API. Chains methods to create the uri and verb for example new RestClient("http://jsonplaceholder.typicode.com/").Posts(1).Get() Explicit and implicit casting from dynamic for example Post post = RestClient("http://jsonplaceholder.typicode.com/").Posts(1).Get()

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on DalSoft.RestClient:

Package Downloads
RoomerSDK

SDK for Roomer API

DalSoft.RestClient.Testing

Use DalSoft.RestClient with ASP.NET Core In-Memory Test Server for integration tests.

RamApidotnet

Package Description

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on DalSoft.RestClient:

Repository Stars
MelbourneDeveloper/RestClient.Net
.NET REST Client Framework for all platforms
kitamstudios/rust-analyzer.vs
Rust language support for Visual Studio 2022
Version Downloads Last updated
4.4.2 9,175 9/2/2024
4.4.1 59,340 12/2/2021
4.4.0 27,567 12/18/2020
4.3.0 2,271 11/25/2020
4.2.1 7,204 9/24/2020
4.2.0 23,031 10/26/2019
4.1.0 13,502 8/24/2019
4.0.0 2,595 8/4/2019
3.3.2 19,480 12/3/2018
3.3.1 2,922 10/29/2018
3.3.0 4,745 7/11/2018
3.2.3 2,228 4/25/2018
3.2.2 48,979 5/4/2017
3.1.1 1,931 4/23/2017
3.1.0 1,879 4/20/2017
3.0.3 2,688 2/27/2017
3.0.2 2,029 2/23/2017
2.0.4 4,927 12/2/2016
2.0.2 2,716 11/2/2016
2.0.1 1,903 10/28/2016
2.0.0 2,397 10/27/2016
1.0.10 4,264 6/14/2016
1.0.9 5,588 8/28/2015
1.0.8 1,778 8/28/2015
1.0.7.27011 2,169 8/3/2015
1.0.7.15372 1,815 8/28/2015
1.0.6 1,994 5/11/2015
1.0.5.2623 1,968 4/25/2015
1.0.4.41175 1,902 2/1/2015
1.0.4.41083 1,995 4/24/2015
1.0.3.29240 1,818 1/21/2015
1.0.2.31019 1,833 1/20/2015
1.0.1 1,863 1/15/2015
1.0.0 1,926 1/14/2015

Fixed bug when casting an object using composition. Fixed bug when casting to an object using composition when the target is a Array. Fixed trailing slash being appended to the uri.