Scrutor.Extensions.HttpClient
5.0.1
There is a newer prerelease version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Scrutor.Extensions.HttpClient --version 5.0.1
NuGet\Install-Package Scrutor.Extensions.HttpClient -Version 5.0.1
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="Scrutor.Extensions.HttpClient" Version="5.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Scrutor.Extensions.HttpClient --version 5.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Scrutor.Extensions.HttpClient, 5.0.1"
#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 Scrutor.Extensions.HttpClient as a Cake Addin #addin nuget:?package=Scrutor.Extensions.HttpClient&version=5.0.1 // Install Scrutor.Extensions.HttpClient as a Cake Tool #tool nuget:?package=Scrutor.Extensions.HttpClient&version=5.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Scrutor.Extensions.HttpClient
A solution for https://github.com/khellang/Scrutor/issues/180 backed into a Nuget Package
Usage
- Inject your Http Client as a named Client
- Make sure that all your Api Clients are assignable to a common interface
- Register all your Api Clients with Scrutor.Extensions.HttpClient
/* Inject named HttpClient */
services.AddHttpClient("MyHttpClient", client =>
{
client.BaseAddress = new Uri("https://api.example.com");
});
/* Inject all implementations of IMyHttpApiClient */
services.Scan(scan => scan
.FromCallingAssembly()
.AddClasses(classes => classes.AssignableTo<IMyHttpApiClient>())
.AsMatchingInterface()
.AsHttpClient("MyHttpClient")
);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- Microsoft.Extensions.Http (>= 9.0.0 && < 10.0.0)
- Scrutor (>= 5.0.0 && < 6.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Scrutor.Extensions.HttpClient:
Package | Downloads |
---|---|
TvdbClient
C# Api Client (HttpClient) for TVDB Api |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
5.1.2-rc-0001-g687aa97e2f | 65 | 2/2/2025 | |
5.1.2-alpha.3 | 37 | 1/20/2025 | |
5.1.2-alpha.2 | 128 | 1/17/2025 | |
5.1.2-alpha | 58 | 1/17/2025 | |
5.0.1 | 71 | 1/17/2025 | |
5.0.0 | 68 | 1/16/2025 | |
1.0.0 | 71 | 1/16/2025 |