nanoFramework.System.Net.Http.Client 1.5.27

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package nanoFramework.System.Net.Http.Client --version 1.5.27
NuGet\Install-Package nanoFramework.System.Net.Http.Client -Version 1.5.27
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="nanoFramework.System.Net.Http.Client" Version="1.5.27" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add nanoFramework.System.Net.Http.Client --version 1.5.27
#r "nuget: nanoFramework.System.Net.Http.Client, 1.5.27"
#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.
// Install nanoFramework.System.Net.Http.Client as a Cake Addin
#addin nuget:?package=nanoFramework.System.Net.Http.Client&version=1.5.27

// Install nanoFramework.System.Net.Http.Client as a Cake Tool
#tool nuget:?package=nanoFramework.System.Net.Http.Client&version=1.5.27

Quality Gate Status Reliability Rating License NuGet #yourfirstpr Discord

nanoFramework logo


Welcome to the .NET nanoFramework System.Net.Http Library repository

Build status

Component Build Status NuGet Package
System.Net.Http Build Status NuGet
System.Net.Http.Client Build Status NuGet
System.Net.Http.Server Build Status NuGet

Usage examples

The API, classes and namespaces in this library follow, as close as possible, the .NET ones. Exceptions are the lack of async calls, generics and the Task, async/await model. The names reflect that by dropping the Async suffix and not returning Task and the lack of the overloaded methods with CancelationToken parameters.

Also worth mentioning is the need to pass the CA root certificate to HttpClient in order to be able to validate the server certificate.

HttpClient calling REST services

HttpClient makes it very easy to connect and consume REST services. In order to use it, one has to create the object and them perform the calls. Note that HttpClient is meant to be reused throughout the application lifecycle. There is no need to create a new instance every time a call has to be performed. Like this:

static readonly HttpClient _httpClient = new HttpClient();

To pass the CA root certificate allowing to validate the secure server certificate. The CA root cert can also come from a binary file or text file from a resource.

_httpClient.HttpsAuthentCert = new X509Certificate(
@"-----BEGIN CERTIFICATE-----
MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl
MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp
U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw
NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE
ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp
ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3
DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf
8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN
+lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0
X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa
K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA
1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G
A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR
zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0
YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD
bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w
DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3
L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D
eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl
xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp
VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY
WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q=
-----END CERTIFICATE-----");

It's possible to add HTTP headers that will be sent along with each request.

_httpClient.DefaultRequestHeaders.Add("x-ms-blob-type", "BlockBlob");

Perform a HTTP GET request

Here's a example of a HTTP request to read some content as a string:

HttpResponseMessage response = _httpClient.Get("https://httpbin.org/get");
response.EnsureSuccessStatusCode();
var responseBody = response.Content.ReadAsString();

The above call would return something similar to the following, which can be output in Visual Studio by calling Debug.WriteLine(responseBody):

{
  "args": {}, 
  "headers": {
    "Host": "httpbin.org", 
    "X-Amzn-Trace-Id": "Root=1-6214aad3-38e5f8357bdf90530300eb5f", 
    "X-Ms-Blob-Type": "BlockBlob"
  }, 
  "origin": "5.249.47.208", 
  "url": "https://httpbin.org/get"
}

Note the call to response.EnsureSuccessStatusCode();. This will throw an HttpRequestException in case the status code from the HTTP request is not a successful one.

Perform a HTTP POST request

Follows an example of a HTTP request performing POST request to send some json content to an endpoint.

var content = new StringContent("{\"someProperty\":\"someValue\"}", Encoding.UTF8, "application/json");
var result = _httpClient.Post("https://httpbin.org/anything", content);
result.EnsureSuccessStatusCode();

Worth noting that the json content above it's presented as a simple string to simplify the code. There is a json library available to help with serializing and deserializing from/to C# classes, even the most complex ones.

Again, note the call to response.EnsureSuccessStatusCode(); to make sure the HTTP request was successfully performed.

Download binary content to a file

Using HttpClient makes it easy to deal with binary content too. Here's an example of how to download a file from a webserver.

HttpResponseMessage response = _httpClient.Get("https://storage-on-the-cloud.net/file-with-binary-content");
response.EnsureSuccessStatusCode();

using FileStream fs = new FileStream($"I:\\i-am-a-binary-file.bin", FileMode.Create, FileAccess.Write);
response.Content.ReadAsStream().CopyTo(fs);

Debugging through a reverse proxy

When code is deployed to a MCU it might be desirable to let the device connect to your development machine running IIS Express. This can be achieved with a proxy such as this one. Be aware that this leads to SocketExceptions with the current version of nanoFramework System.Net.Http when sending consecutive requests to your development machine. A simple retry mechanism in Debug mode will get around this.

Feedback and documentation

For documentation, providing feedback, issues and finding out how to contribute please refer to the Home repo.

Join our Discord community here.

Credits

The list of contributors to this project can be found at CONTRIBUTORS.

License

The nanoFramework Class Libraries are licensed under the MIT license.

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behaviour in our community. For more information see the .NET Foundation Code of Conduct.

.NET Foundation

This project is supported by the .NET Foundation.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on nanoFramework.System.Net.Http.Client:

Repository Stars
dotnet/samples
Sample code referenced by the .NET documentation
nanoframework/Samples
🍬 Code samples from the nanoFramework team used in testing, proof of concepts and other explorational endeavours
Version Downloads Last updated
1.5.125 221 1/29/2024
1.5.118 101 1/24/2024
1.5.113 363 11/10/2023
1.5.110 108 11/9/2023
1.5.108 99 11/9/2023
1.5.106 120 11/3/2023
1.5.104 217 10/10/2023
1.5.102 159 10/4/2023
1.5.99 295 8/8/2023
1.5.97 227 7/27/2023
1.5.95 125 7/27/2023
1.5.84 576 2/17/2023
1.5.82 351 1/24/2023
1.5.78 327 12/28/2022
1.5.75 287 12/28/2022
1.5.73 294 12/28/2022
1.5.70 295 12/27/2022
1.5.68 307 12/22/2022
1.5.61 496 11/23/2022
1.5.54 486 10/26/2022
1.5.52 344 10/26/2022
1.5.50 385 10/26/2022
1.5.48 377 10/25/2022
1.5.45 364 10/25/2022
1.5.43 395 10/24/2022
1.5.41 408 10/24/2022
1.5.39 379 10/24/2022
1.5.37 395 10/23/2022
1.5.35 394 10/23/2022
1.5.30 424 10/10/2022
1.5.27 379 10/8/2022
1.5.24 446 9/22/2022
1.5.22 399 9/22/2022
1.5.20 502 9/15/2022
1.5.18 421 9/15/2022
1.5.13 607 8/5/2022
1.5.10 383 8/4/2022
1.5.8 391 8/4/2022
1.5.6 410 8/4/2022
1.5.4 409 8/3/2022
1.5.2 413 8/3/2022
1.4.0.25 423 8/3/2022
1.4.0.23 581 6/13/2022
1.4.0.21 427 6/8/2022
1.4.0.19 425 6/8/2022
1.4.0.14 483 5/26/2022
1.4.0.12 455 5/18/2022
1.4.0.10 475 5/3/2022
1.4.0 565 3/28/2022
1.4.0-preview.52 124 3/28/2022
1.4.0-preview.51 116 3/28/2022
1.4.0-preview.50 114 3/28/2022
1.4.0-preview.48 115 3/28/2022
1.4.0-preview.47 115 3/28/2022
1.4.0-preview.46 116 3/28/2022
1.4.0-preview.44 133 3/17/2022
1.4.0-preview.43 115 3/17/2022
1.4.0-preview.42 116 3/14/2022
1.4.0-preview.41 113 3/14/2022
1.4.0-preview.40 107 3/14/2022
1.4.0-preview.39 113 3/14/2022
1.4.0-preview.37 119 3/14/2022
1.4.0-preview.36 127 3/8/2022
1.4.0-preview.35 122 3/8/2022
1.4.0-preview.33 121 3/4/2022
1.4.0-preview.32 117 3/3/2022
1.4.0-preview.31 118 3/2/2022
1.4.0-preview.29 159 2/28/2022
1.4.0-preview.28 189 2/24/2022
1.4.0-preview.26 138 2/17/2022
1.4.0-preview.24 119 2/17/2022
1.4.0-preview.22 149 2/6/2022
1.4.0-preview.21 137 2/4/2022
1.4.0-preview.19 136 2/4/2022
1.4.0-preview.18 135 1/28/2022
1.4.0-preview.16 131 1/28/2022
1.4.0-preview.15 135 1/28/2022
1.4.0-preview.13 136 1/28/2022
1.4.0-preview.12 134 1/21/2022
1.4.0-preview.6 150 1/12/2022
1.4.0-preview.5 134 1/12/2022
1.4.0-preview.4 131 1/11/2022
1.4.0-preview.3 137 1/11/2022
1.3.7-preview.8 135 1/5/2022
1.3.7-preview.7 140 1/3/2022
1.3.7-preview.6 134 1/3/2022
1.3.7-preview.5 136 1/3/2022
1.3.7-preview.4 134 12/30/2021
1.3.7-preview.3 135 12/28/2021
1.3.6 531 12/3/2021
1.3.6-preview.23 137 12/3/2021
1.3.6-preview.21 141 12/3/2021
1.3.6-preview.20 145 12/2/2021
1.3.6-preview.19 148 12/2/2021
1.3.6-preview.18 142 12/2/2021
1.3.6-preview.17 142 12/2/2021
1.3.6-preview.16 146 12/2/2021
1.3.6-preview.14 147 12/2/2021
1.3.6-preview.12 141 12/2/2021
1.3.6-preview.10 146 12/1/2021
1.3.6-preview.7 148 12/1/2021
1.3.6-preview.1 212 11/11/2021
1.3.5-preview.8 149 10/22/2021
1.3.5-preview.5 171 10/18/2021
1.3.4 847 7/16/2021
1.3.4-preview.78 153 7/16/2021
1.3.4-preview.76 153 7/16/2021
1.3.4-preview.74 159 7/16/2021
1.3.4-preview.72 166 7/15/2021
1.3.4-preview.70 170 7/14/2021
1.3.4-preview.68 604 6/19/2021
1.3.4-preview.66 257 6/19/2021
1.3.4-preview.64 158 6/17/2021
1.3.4-preview.62 162 6/7/2021
1.3.4-preview.60 158 6/7/2021
1.3.4-preview.58 190 6/7/2021
1.3.4-preview.56 204 6/6/2021
1.3.4-preview.54 203 6/3/2021
1.3.4-preview.52 157 6/2/2021
1.3.4-preview.50 174 6/1/2021
1.3.4-preview.48 182 6/1/2021
1.3.4-preview.41 195 5/25/2021
1.3.4-preview.39 218 5/21/2021
1.3.4-preview.37 220 5/20/2021
1.3.4-preview.35 163 5/19/2021
1.3.4-preview.33 167 5/19/2021
1.3.4-preview.31 186 5/19/2021
1.3.4-preview.29 163 5/15/2021
1.3.4-preview.27 162 5/15/2021
1.3.4-preview.25 165 5/15/2021
1.3.4-preview.23 170 5/13/2021
1.3.4-preview.22 164 5/13/2021
1.3.4-preview.20 183 5/11/2021
1.3.4-preview.18 222 5/6/2021
1.3.4-preview.16 160 5/6/2021
1.3.4-preview.14 150 5/5/2021
1.3.4-preview.13 144 5/5/2021
1.3.4-preview.10 182 4/10/2021
1.3.4-preview.9 195 4/9/2021
1.3.4-preview.7 171 4/5/2021
1.3.3-preview.65 222 3/20/2021
1.3.3-preview.62 198 3/19/2021
1.3.3-preview.60 160 3/17/2021
1.3.3-preview.57 161 3/17/2021
1.3.3-preview.55 179 3/2/2021
1.3.3-preview.50 380 1/19/2021
1.3.3-preview.47 185 1/6/2021
1.3.3-preview.40 179 12/29/2020
1.3.3-preview.34 250 12/7/2020
1.3.3-preview.32 210 12/7/2020
1.3.3-preview.27 234 11/3/2020
1.3.3-preview.25 231 10/26/2020
1.3.3-preview.23 254 10/21/2020
1.3.3-preview.17 239 10/20/2020
1.3.3-preview.15 307 10/1/2020
1.3.3-preview.11 236 9/30/2020
1.3.3-preview.9 238 9/30/2020
1.3.3-preview.7 254 9/27/2020
1.3.3-preview.5 257 9/27/2020
1.3.3-preview.1 228 9/24/2020
1.3.2-preview.3 252 9/19/2020
1.3.2-preview.1 315 8/25/2020
1.3.1-preview.6 270 7/2/2020
1.3.1-preview.3 308 6/30/2020
1.3.0 527 6/16/2020
1.3.0-rc.3 284 6/16/2020
1.3.0-preview.11 293 6/16/2020
1.3.0-preview.9 220 6/16/2020
1.3.0-preview.7 230 6/16/2020
1.3.0-alpha.12 288 6/16/2020
1.3.0-alpha.10 221 6/16/2020
1.3.0-alpha.8 228 6/16/2020
1.2.2 431 6/12/2020
1.2.2-preview.41 229 6/12/2020
1.2.2-preview.39 247 6/12/2020
1.2.2-preview.34 246 6/3/2020
1.2.2-preview.33 257 6/3/2020
1.2.2-preview.31 346 5/31/2020
1.2.2-preview.30 238 5/31/2020
1.2.2-preview.29 269 5/31/2020
1.2.2-preview.28 262 5/29/2020
1.2.2-preview.27 265 5/8/2020
1.2.2-preview.26 261 5/8/2020
1.2.2-preview.25 243 4/27/2020
1.2.2-preview.24 235 4/24/2020
1.2.2-preview.23 230 4/21/2020
1.2.2-preview.22 275 4/16/2020
1.2.2-preview.19 271 4/16/2020
1.2.2-preview.18 245 4/14/2020
1.2.2-preview.17 245 4/14/2020
1.2.2-preview.16 243 4/14/2020
1.2.2-preview.15 279 3/25/2020
1.2.2-preview.14 284 3/15/2020
1.2.2-preview.13 246 3/10/2020
1.2.2-preview.12 239 3/10/2020
1.2.2-preview.10 236 3/10/2020
1.2.2-preview.8 243 3/10/2020
1.2.2-preview.7 242 3/10/2020
1.2.2-preview.6 267 3/9/2020
1.2.2-preview.5 269 3/9/2020
1.2.2-preview.4 248 3/6/2020
1.2.2-preview.3 292 1/13/2020
1.2.2-preview.2 305 11/14/2019
1.2.2-preview.1 259 11/12/2019
1.2.2-alpha.42 229 6/12/2020
1.2.2-alpha.40 252 6/12/2020
1.2.2-alpha.38 281 6/11/2020
1.2.2-alpha.35 239 6/3/2020
1.2.2-alpha.34 257 6/3/2020
1.2.2-alpha.32 347 5/31/2020
1.2.2-alpha.31 264 5/31/2020
1.2.2-alpha.30 268 5/30/2020
1.2.2-alpha.29 254 5/29/2020
1.2.2-alpha.28 260 5/8/2020
1.2.2-alpha.27 257 5/8/2020
1.2.2-alpha.26 237 4/27/2020
1.2.2-alpha.23 273 4/16/2020
1.2.2-alpha.21 264 4/16/2020
1.2.2-alpha.20 262 4/16/2020
1.2.2-alpha.19 238 4/14/2020
1.2.2-alpha.18 241 4/14/2020
1.2.2-alpha.17 236 4/14/2020
1.2.2-alpha.16 281 3/25/2020
1.2.2-alpha.15 284 3/15/2020
1.2.2-alpha.14 238 3/10/2020
1.2.2-alpha.13 232 3/10/2020
1.2.2-alpha.11 240 3/10/2020
1.2.2-alpha.10 239 3/10/2020
1.2.2-alpha.9 245 3/10/2020
1.2.2-alpha.8 269 3/9/2020
1.2.2-alpha.7 267 3/9/2020
1.2.2-alpha.6 274 3/9/2020
1.2.1-preview.3 251 11/8/2019
1.2.1-preview.1 264 11/5/2019
1.2.0-preview.3 257 10/18/2019
1.1.0 557 10/17/2019
1.1.0-preview.3 261 10/17/2019
1.0.8-preview.7 250 10/17/2019
1.0.8-preview.5 273 10/15/2019
1.0.8-preview.4 267 9/30/2019
1.0.8-preview.1 280 8/30/2019
1.0.7-preview.1 284 8/30/2019
1.0.6-preview.33 288 8/19/2019
1.0.6-preview.30 282 7/19/2019
1.0.6-preview.26 291 6/23/2019
1.0.6-preview.19 309 6/22/2019
1.0.6-preview.17 306 6/18/2019
1.0.5-preview-028 463 4/5/2019
1.0.5-preview-026 473 4/5/2019