HomeDev GuideRecipesAPI Reference
Dev GuideAPI ReferenceUser GuideLegal TermsGitHubNuGetDev CommunityOptimizely AcademySubmit a ticketLog In
Dev Guide

Add Azure Blob Provider to your .NET Core application

Explains the concept and usage of BLOBs (Binary Large Objects) for Azure BLOB.

Install EPiserver.Azure package that have the extensions methods on IServiceCollection interface. See also Create and deploy a CMS site.

The following example shows how to use and add Azure BLOB provider in application:

using EPiServer.ServiceLocation;
using Microsoft.Extensions.DependencyInjection;
using System;

namespace SampleBlob {
  public class Startup {
    public void ConfigureServices(IServiceCollection services) {
      .AddAzureBlobProvider("Azure", o => {
        o.ConnectionString = {
          The Azuer storage connection string
        };
        o.ContainerName = {
          The container name
        };
      });
    }
  }
}