Append.Blazor.Downloads 9.0.0

dotnet add package Append.Blazor.Downloads --version 9.0.0                
NuGet\Install-Package Append.Blazor.Downloads -Version 9.0.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="Append.Blazor.Downloads" Version="9.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Append.Blazor.Downloads --version 9.0.0                
#r "nuget: Append.Blazor.Downloads, 9.0.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.
// Install Append.Blazor.Downloads as a Cake Addin
#addin nuget:?package=Append.Blazor.Downloads&version=9.0.0

// Install Append.Blazor.Downloads as a Cake Tool
#tool nuget:?package=Append.Blazor.Downloads&version=9.0.0                

Downloads

Service to download files in Microsoft Blazor.

Package Version NuGet Downloads License

Installation

Install-Package Append.Blazor.Downloads

Demo

There is a sample application in /docs folder which is also hosted as documentation.

Usage

Add IDownloadsService via DI in Program.cs

Scoped by default.

builder.Services.AddDownloadServices();

Inject into component/pages

@using Append.Blazor.Downloads
@inject IDownloadService DownloadService

or

Inject on a BlazorComponent class:

[Inject] public IDownloadService DownloadService { get; set; } = default!;

Download a file

// Your file stream
var randomBinaryData = new byte[50 * 1024];
var fileStream = new MemoryStream(randomBinaryData);

await DownloadService.DownloadFileAsync("myFile.txt", fileStream);

Contributions and feedback

Please feel free to use the component, open issues, fix bugs or provide feedback.

Contributors

This project is created and maintained by:

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

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.0.0 60 11/16/2024
8.0.0 91 11/4/2024