Soenneker.Blob.Client 4.0.2170

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

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

Soenneker.Blob.Client

This should be used for any connection to Blob storage that is needed due to it's reuse of connections.

Install

dotnet add package Soenneker.Blob.Client

Quick start

using Soenneker.Blob.Client.Registrars;
using Microsoft.Extensions.DependencyInjection;

var services = new ServiceCollection();
var result = services.AddBlobClientUtilAsSingleton();

Registers Blob Client Util with a singleton lifetime.

What you get

  • IBlobClientUtil — This should be used for any connection to Blob storage that is needed due to it's reuse of connections.
  • BlobClientUtilRegistrar — A utility library for Azure Blob storage client operations.

API at a glance

API What it does Result / important behavior
IBlobClientUtil.Get(containerName, relativeUrl, publicAccessType, cancellationToken) Will create container if it doesn't exist (if we haven't accessed this container since app restart) NOTE: containerName will be converted to lowercase. A task whose result is the requested blob Client.
BlobClientUtilRegistrar.AddBlobClientUtilAsSingleton(services) Registers Blob Client Util with a singleton lifetime. The same service collection, so additional registrations can be chained.
BlobClientUtilRegistrar.AddBlobClientUtilAsScoped(services) Registers Blob Client Util with a scoped lifetime. The same service collection, so additional registrations can be chained.

Practical notes

  • Cancellation stops pending work; it does not undo work that has already completed.
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 (3)

Showing the top 3 NuGet packages that depend on Soenneker.Blob.Client:

Package Downloads
Soenneker.Blob.Download

A utility library for Azure Blob download operations

Soenneker.Blob.Delete

A utility library for Azure Blob storage delete operations

Soenneker.Blob.Sas

A utility library for Azure Blob SAS operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.0.2176 0 8/30/2026
4.0.2175 0 8/30/2026
4.0.2174 23 8/30/2026
4.0.2173 147 8/30/2026
4.0.2172 57 8/30/2026
4.0.2171 28 8/30/2026
4.0.2170 59 8/29/2026
4.0.2169 37 8/29/2026
4.0.2168 34 8/29/2026
4.0.2167 274 8/26/2026
4.0.2166 129 8/26/2026
4.0.2165 99 8/26/2026
4.0.2164 144 8/25/2026
4.0.2163 260 8/22/2026
4.0.2162 215 8/22/2026
4.0.2161 347 8/21/2026
4.0.2160 893 8/19/2026
4.0.2159 466 8/13/2026
4.0.2158 166 8/13/2026
4.0.2157 285 8/12/2026
Loading failed

Improve README usability and API guidance