HomeDev Guide
Dev GuideUser GuideGitHubNuGetDev CommunityDoc feedbackLog In
GitHubNuGetDev CommunityDoc feedback

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 deploying 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};
          });
        }
      }
    }