Microsoft.Azure.WebJobs.Host.Storage 5.0.1

Microsoft.Azure.WebJobs.Host.Storage

This package contains Azure Storage based implementations of some WebJobs SDK component interfaces. For more information, please visit https://go.microsoft.com/fwlink/?linkid=2279708.

Commonly used types

The main types exposed by this package are host builder extension methods to IWebJobsBuilder, provided by the following Types:

  • RuntimeStorageWebJobsBuilderExtensions
  • StorageServiceCollectionExtensions
  • StorageServiceCollectionExtensions

Example usage

The below example demonstrates the registration of Azure Storage services via the AddAzureStorageCoreServices builder method.

using System.Threading.Tasks;
using Microsoft.Extensions.Hosting;

class Program
{
    public static async Task Main(string[] args)
    {
        var builder = Host.CreateDefaultBuilder(args)
            .ConfigureWebJobs(b =>
            {
                b.AddAzureStorageCoreServices();
                b.AddAzureStorageQueues();
            });

        using var host = builder.Build();
        await host.RunAsync();
    }
}

No packages depend on Microsoft.Azure.WebJobs.Host.Storage.

.NET Standard 2.0

Version Downloads Last updated
5.0.1 8 01/20/2025
5.0.0 7 01/20/2025
5.0.0-beta.1 5 01/20/2025
4.1.0 6 01/20/2025
4.0.4 6 02/19/2025
4.0.1 7 01/20/2025
3.0.14 6 07/01/2024
3.0.13 6 01/20/2025
3.0.8 6 01/20/2025
3.0.6 6 01/20/2025
3.0.5 6 01/20/2025
3.0.4 6 01/20/2025
3.0.3 6 01/20/2025
3.0.2 6 01/20/2025
3.0.1 5 02/19/2025
3.0.0 6 01/20/2025
3.0.0-rc1 7 01/20/2025
3.0.0-beta8 7 01/20/2025