MyNet.Http 19.3.5

dotnet add package MyNet.Http --version 19.3.5
                    
NuGet\Install-Package MyNet.Http -Version 19.3.5
                    
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="MyNet.Http" Version="19.3.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="MyNet.Http" Version="19.3.5" />
                    
Directory.Packages.props
<PackageReference Include="MyNet.Http" />
                    
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 MyNet.Http --version 19.3.5
                    
#r "nuget: MyNet.Http, 19.3.5"
                    
#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 MyNet.Http@19.3.5
                    
#: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=MyNet.Http&version=19.3.5
                    
Install as a Cake Addin
#tool nuget:?package=MyNet.Http&version=19.3.5
                    
Install as a Cake Tool

<div align="center">

MyNet.Http

<img src="MyNetHttp.png" alt="MyNet.Http" width="96" height="96" />

HTTP client helpers and Web API consumption utilities on HttpClient and System.Text.Json.

</div>

<div align="center">

MIT License NuGet .NET

</div>


Features

Feature Description
WebApiService Typed REST calls with System.Text.Json
Timeouts Per-request timeout configuration
Requests HttpClient-friendly building patterns
Responses Helpers for Web API consumption

Installation

dotnet add package MyNet.Http

Quick start

using MyNet.Http;

public record ItemDto(string Name);

await using var api = new WebApiService(
    new Uri("https://api.example.com/"),
    timeout: TimeSpan.FromSeconds(30));

var item = await api.GetDataAsync<ItemDto>("/items/1", CancellationToken.None);

Per-request timeout: request.SetTimeout(TimeSpan.FromSeconds(2)).



Documentation


<div align="center">

<sub>

Copyright © 2016-2026 - Stéphane ANDRE. All Rights Reserved.

<br/>

Released under the MIT License.

</sub>

</div>

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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. 
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

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
19.3.5 0 6/3/2026
19.3.4 0 6/3/2026
19.3.3 0 6/2/2026
19.3.2 0 6/2/2026
19.3.1 25 6/2/2026
19.3.0 92 6/1/2026
19.2.1 89 5/31/2026
19.2.0 91 5/31/2026
19.1.0 89 5/31/2026
19.0.0 87 5/29/2026
18.0.0 109 4/16/2026
17.1.0 110 4/9/2026
17.0.1 105 3/18/2026
17.0.0 106 3/18/2026
16.0.2 107 2/19/2026
16.0.1 101 2/19/2026
16.0.0 105 2/19/2026
15.0.0 198 12/22/2025
14.4.0 182 12/21/2025
14.3.0 227 12/7/2025
Loading failed