Ecng.Net.Clients 1.0.216

There is a newer version of this package available.
See the version list below for details.
dotnet add package Ecng.Net.Clients --version 1.0.216
                    
NuGet\Install-Package Ecng.Net.Clients -Version 1.0.216
                    
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="Ecng.Net.Clients" Version="1.0.216" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Ecng.Net.Clients" Version="1.0.216" />
                    
Directory.Packages.props
<PackageReference Include="Ecng.Net.Clients" />
                    
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 Ecng.Net.Clients --version 1.0.216
                    
#r "nuget: Ecng.Net.Clients, 1.0.216"
                    
#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.
#:package Ecng.Net.Clients@1.0.216
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Ecng.Net.Clients&version=1.0.216
                    
Install as a Cake Addin
#tool nuget:?package=Ecng.Net.Clients&version=1.0.216
                    
Install as a Cake Tool

Ecng.Net.Clients

Utility base classes for building REST API clients.

Purpose

Wraps HttpClient with serialization and error handling so API classes stay concise.

Key Features

  • Simplifies HttpClient usage
  • Retry policies with backoff
  • Automatic serialization
  • Request logging

Standard .NET

using var client = new HttpClient { BaseAddress = new Uri("https://api/") };
client.DefaultRequestHeaders.Authorization =
    new AuthenticationHeaderValue("Bearer", token);

var resp = await client.GetAsync("item");
resp.EnsureSuccessStatusCode();
var dto = JsonSerializer.Deserialize<MyDto>(
    await resp.Content.ReadAsStringAsync());

Using Ecng

class MyClient(string token) : RestBaseApiClient(new HttpClient(),
    new JsonMediaTypeFormatter(), new JsonMediaTypeFormatter())
{
    public MyClient() { AddAuthBearer(token); BaseAddress = new("https://api/"); }

    public Task<MyDto> Get() => GetAsync<MyDto>("item");
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Ecng.Net.Clients:

Package Downloads
StockSharp.Mfd

MFD

StockSharp.Web.Api.Interfaces

StockSharp WebApi

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.243 28 11/1/2025
1.0.242 80 10/31/2025
1.0.241 112 10/28/2025
1.0.240 155 10/27/2025
1.0.239 156 10/27/2025
1.0.238 89 10/25/2025
1.0.237 100 10/24/2025
1.0.236 161 10/20/2025
1.0.235 165 10/12/2025
1.0.234 104 10/11/2025
1.0.233 161 10/7/2025
1.0.232 171 10/6/2025
1.0.231 125 10/3/2025
1.0.230 170 10/1/2025
1.0.229 169 10/1/2025
1.0.228 169 9/30/2025
1.0.227 154 9/28/2025
1.0.226 170 9/25/2025
1.0.225 491 9/5/2025
1.0.224 166 9/2/2025
1.0.223 1,737 8/30/2025
1.0.222 327 8/30/2025
1.0.221 288 8/20/2025
1.0.220 159 8/20/2025
1.0.219 164 8/19/2025
1.0.218 139 8/15/2025
1.0.217 180 8/10/2025
1.0.216 417 7/16/2025
1.0.215 172 7/14/2025
1.0.214 178 7/13/2025
1.0.213 180 7/13/2025
1.0.212 134 7/12/2025
1.0.211 247 7/8/2025
1.0.210 148 7/4/2025
1.0.209 177 7/2/2025
1.0.208 214 6/24/2025
1.0.207 2,440 6/16/2025
1.0.206 331 6/9/2025
1.0.205 235 6/8/2025
1.0.204 288 5/21/2025
1.0.203 195 5/21/2025
1.0.202 180 5/17/2025
1.0.201 402 5/12/2025
1.0.200 263 5/12/2025
1.0.199 237 5/12/2025
1.0.198 182 5/11/2025
1.0.197 165 5/11/2025
1.0.196 111 5/10/2025
1.0.195 113 5/10/2025
1.0.194 204 5/6/2025
1.0.193 122 5/3/2025
1.0.192 243 4/17/2025
1.0.191 230 4/15/2025
1.0.190 142 4/12/2025
1.0.189 223 4/9/2025
1.0.188 1,945 4/6/2025
1.0.187 142 4/5/2025
1.0.186 277 3/22/2025
1.0.185 232 3/20/2025
1.0.184 199 3/20/2025
1.0.183 208 3/19/2025
1.0.182 509 2/26/2025
1.0.181 161 2/26/2025
1.0.180 409 2/8/2025
1.0.179 158 2/8/2025
1.0.178 166 2/8/2025
1.0.177 159 2/6/2025
1.0.176 154 2/6/2025
1.0.175 160 2/6/2025
1.0.174 170 2/6/2025
1.0.173 155 2/6/2025
1.0.172 2,013 2/5/2025
1.0.171 163 2/5/2025
1.0.170 177 2/5/2025
1.0.169 478 2/3/2025
1.0.168 181 2/2/2025
1.0.167 183 2/1/2025
1.0.166 162 1/31/2025
1.0.165 177 1/30/2025
1.0.164 153 1/26/2025
1.0.163 190 1/21/2025
1.0.162 154 1/20/2025
1.0.161 152 1/20/2025
1.0.160 153 1/19/2025
1.0.159 154 1/19/2025
1.0.158 372 1/15/2025
1.0.157 284 1/15/2025
1.0.156 284 1/15/2025
1.0.155 152 1/14/2025
1.0.154 154 1/12/2025
1.0.153 137 1/12/2025
1.0.152 189 1/12/2025
1.0.151 153 1/12/2025
1.0.150 160 1/10/2025
1.0.149 580 12/30/2024
1.0.148 167 12/27/2024
1.0.147 185 12/19/2024
1.0.146 189 11/20/2024
1.0.145 168 11/19/2024
1.0.144 173 11/19/2024
1.0.143 1,877 11/18/2024
1.0.142 201 11/18/2024
1.0.141 270 11/7/2024
1.0.140 163 10/31/2024
1.0.139 190 10/19/2024
1.0.138 229 10/19/2024
1.0.137 210 10/19/2024
1.0.136 1,146 10/13/2024
1.0.135 198 10/12/2024
1.0.134 275 10/9/2024
1.0.133 178 10/9/2024
1.0.132 229 10/5/2024
1.0.131 1,434 9/18/2024
1.0.130 184 9/18/2024
1.0.129 376 9/18/2024
1.0.128 184 9/17/2024
1.0.127 195 9/17/2024
1.0.126 379 9/3/2024
1.0.125 175 9/1/2024
1.0.124 537 8/8/2024
1.0.123 2,155 7/25/2024
1.0.122 158 7/23/2024
1.0.121 465 7/23/2024
1.0.120 306 7/23/2024
1.0.119 794 7/4/2024
1.0.118 1,292 6/12/2024
1.0.117 369 6/12/2024
1.0.116 180 6/12/2024
1.0.115 614 5/28/2024
1.0.114 430 5/4/2024
1.0.113 312 4/23/2024
1.0.112 2,056 4/21/2024
1.0.111 347 4/14/2024
1.0.110 838 4/5/2024
1.0.109 632 3/28/2024
1.0.108 214 3/17/2024
1.0.107 952 3/9/2024
1.0.106 356 2/23/2024
1.0.105 211 2/23/2024
1.0.104 727 2/18/2024
1.0.103 164 2/18/2024
1.0.102 177 2/16/2024
1.0.101 305 2/13/2024
1.0.100 280 2/8/2024
1.0.99 267 2/5/2024
1.0.98 179 2/4/2024
1.0.97 282 1/23/2024
1.0.96 189 1/23/2024
1.0.95 1,628 1/12/2024
1.0.94 1,761 1/2/2024
1.0.93 364 12/29/2023
1.0.92 541 12/17/2023
1.0.91 450 12/15/2023
1.0.90 187 12/15/2023
1.0.89 215 12/15/2023
1.0.88 889 12/13/2023
1.0.87 227 12/13/2023
1.0.86 221 12/10/2023
1.0.85 2,100 11/18/2023
1.0.84 195 11/18/2023
1.0.83 180 11/18/2023
1.0.82 164 11/17/2023
1.0.81 173 11/12/2023
1.0.80 173 11/12/2023
1.0.79 186 11/10/2023
1.0.78 166 11/10/2023
1.0.77 380 11/9/2023
1.0.76 182 11/9/2023
1.0.75 170 11/9/2023
1.0.74 558 11/3/2023
1.0.73 168 11/1/2023
1.0.72 197 11/1/2023
1.0.71 2,522 9/8/2023
1.0.70 413 9/8/2023
1.0.69 373 9/3/2023
1.0.68 228 8/27/2023
1.0.67 208 8/24/2023
1.0.66 259 8/21/2023
1.0.65 643 8/15/2023
1.0.64 237 8/14/2023
1.0.63 206 8/14/2023
1.0.62 841 8/10/2023
1.0.61 1,195 7/29/2023
1.0.60 1,555 7/1/2023
1.0.59 284 6/29/2023
1.0.58 2,154 6/4/2023
1.0.57 953 5/27/2023
1.0.56 564 5/21/2023
1.0.55 705 5/19/2023
1.0.54 2,684 5/8/2023
1.0.53 285 5/7/2023
1.0.52 316 5/6/2023
1.0.51 871 5/5/2023
1.0.50 255 5/5/2023
1.0.49 1,565 5/1/2023
1.0.48 1,791 4/22/2023
1.0.47 293 4/21/2023
1.0.46 296 4/21/2023
1.0.45 1,684 4/13/2023
1.0.44 735 4/3/2023
1.0.43 2,150 3/27/2023
1.0.42 1,512 3/21/2023
1.0.41 818 3/18/2023
1.0.40 366 3/18/2023
1.0.39 379 3/17/2023
1.0.38 785 3/13/2023
1.0.37 912 3/6/2023
1.0.36 1,387 2/26/2023
1.0.35 1,390 2/21/2023
1.0.34 387 2/20/2023
1.0.33 1,332 2/16/2023
1.0.32 418 2/15/2023
1.0.31 370 2/14/2023
1.0.30 370 2/14/2023
1.0.29 892 2/9/2023
1.0.28 2,121 2/7/2023
1.0.27 412 2/4/2023
1.0.26 407 2/4/2023
1.0.25 443 2/3/2023
1.0.24 413 2/3/2023
1.0.23 398 2/2/2023
1.0.22 422 1/30/2023
1.0.21 1,870 1/30/2023
1.0.20 2,513 1/25/2023
1.0.19 428 1/23/2023
1.0.18 421 1/23/2023
1.0.17 456 1/18/2023
1.0.16 444 1/15/2023
1.0.15 427 1/6/2023
1.0.14 458 1/1/2023
1.0.13 420 12/31/2022
1.0.12 422 12/30/2022
1.0.11 427 12/29/2022
1.0.10 425 12/23/2022
1.0.9 435 12/12/2022
1.0.8 419 12/8/2022
1.0.7 459 12/4/2022
1.0.6 451 12/4/2022
1.0.5 434 12/2/2022
1.0.4 446 11/30/2022
1.0.3 444 11/29/2022
1.0.2 474 11/28/2022
1.0.1 474 11/26/2022
1.0.0 445 11/26/2022