BlazorNative.Http 0.5.0

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

BlazorNative.Http

The BlazorNative HTTP bridge: BridgeHttpHandler routes HttpClient traffic through the hosting native shell's fetch bridge, so Blazor components use plain HttpClient/IHttpClientFactory on NativeAOT while the shell owns the platform networking stack, permissions, and proxy rules.

Where it sits

Your app → BlazorNative.ComponentsBlazorNative.RendererBlazorNative.Runtime → the native shells. Http is the bridge handler alongside that stack: the shell owns the sockets, your components own the requests.

What you use from it

// Components just take HttpClient — the bridge handler is wired underneath:
[Inject] public HttpClient Http { get; set; } = default!;
var todos = await Http.GetFromJsonAsync<Todo[]>("https://example.com/api/todos");

Status

Pre-1.0 (0.x): BlazorNative is a proof of concept heading toward a stable release. The ABI and component surface may still move between minor versions.

License: MIT · Docs: https://marcelroozekrans.github.io/BlazorNative/

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 (1)

Showing the top 1 NuGet packages that depend on BlazorNative.Http:

Package Downloads
BlazorNative.Runtime

The BlazorNative runtime: the 10 blazornative_* native exports, the host session, the binary frame/bridge wire protocol, and the BlazorNativeApp.RegisterPages registration API through which an app names its pages. NativeAOT/trim-compatible — the app owns the publish head.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.8.0 33 7/25/2026
0.5.1 33 7/23/2026
0.5.0 49 7/23/2026
0.4.1 55 7/21/2026
0.4.0 80 7/21/2026
0.3.0 97 7/20/2026
0.2.0 101 7/20/2026
0.1.1 92 7/20/2026
0.1.0 108 7/19/2026