IBeam.Storage.AzureBlobs 2.9.0

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

IBeam.Storage.AzureBlobs

IBeam.Storage.AzureBlobs implements IBlobStorageService with Azure Blob Storage.

dotnet add package IBeam.Storage.AzureBlobs

When To Use This

  • You want IBeam file/blob operations backed by Azure Blob Storage.
  • You are deploying to Azure and want to use storage account containers.
  • You want services to depend on IBlobStorageService instead of Azure SDK types.

What This Package Contains

Area Type(s) Purpose
Provider AzureBlobStorageService Implements blob save/read/delete/existence/URL operations.
Options AzureBlobStorageOptions Configures connection string or service URI.
DI AddIBeamAzureBlobStorage(IConfiguration) Registers Azure Blob Storage as IBlobStorageService.

Quick Start

using IBeam.Storage.AzureBlobs;

builder.Services.AddIBeamAzureBlobStorage(builder.Configuration);

Configuration with a connection string:

{
  "IBeam": {
    "Storage": {
      "AzureBlobs": {
        "ConnectionString": "<storage-connection-string>",
        "UseDevelopmentStorageCompatibility": true
      }
    }
  }
}

Configuration with a service URI:

{
  "IBeam": {
    "Storage": {
      "AzureBlobs": {
        "ServiceUri": "https://account.blob.core.windows.net"
      }
    }
  }
}

Configuration

Setting Default Purpose
ConnectionString empty Storage account or development storage connection string.
ServiceUri empty Absolute Blob service URI.
UseDevelopmentStorageCompatibility true Applies compatibility behavior for local Azurite/development storage when using a connection string.

Either ConnectionString or ServiceUri is required.

Storage Shape

This package creates or uses Azure Blob containers by name. It does not create Azure Tables.

Concept IBeam Name Azure Blob Name
Storage group containerName Blob container
Object path blobName Blob name/key
Content type contentType Blob HTTP content type

Code Example

await storage.SaveAsync(
    "tenant-225925cc995e4584a63b4f2cb4f38f6f",
    "products/cc0b3/image.jpg",
    imageStream,
    contentType: "image/jpeg",
    overwrite: true,
    ct);

Extended Docs And Agent Guidance

Agents should keep file naming rules in services and use this provider only for Azure Blob IO.

Troubleshooting

Problem Likely Cause Fix
Startup fails Neither ConnectionString nor ServiceUri is configured Configure one of them under IBeam:Storage:AzureBlobs.
Save fails with container error Invalid container name or insufficient permission Use Azure-valid lowercase container names and verify credentials.
URL is not publicly accessible Container/account access policy blocks it Use signed URLs or a host-controlled download endpoint when needed.

Version Notes

  • Targets net10.0.
  • Uses Azure Storage Blob SDK.
  • Package version is assigned by the repository release workflow.
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
2.9.0 0 7/21/2026
2.8.2 0 7/21/2026
2.8.1 0 7/21/2026
2.8.0 0 7/21/2026
2.7.0 27 7/21/2026
2.6.0 44 7/20/2026
2.5.0 49 7/17/2026
2.4.2 58 7/16/2026
2.4.1 88 7/14/2026
2.4.0 113 6/24/2026
2.3.0 102 6/24/2026
2.2.0 113 6/23/2026
2.1.0 113 6/23/2026
2.0.68 107 6/23/2026
2.0.66 105 6/22/2026
2.0.65 103 6/22/2026
2.0.64 113 6/17/2026
2.0.63 108 6/16/2026
2.0.62 107 6/16/2026
2.0.57 123 6/8/2026
Loading failed