Disclaimer: This website requires Please enable JavaScript in your browser settings for the best experience.

HomeDev GuideRecipesAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunityOptimizely AcademySubmit a ticketLog In
Dev Guide
GitHubNuGetDev CommunityOptimizely AcademySubmit a ticket

Optimizely developer documentation

How can we help you?

Try our conversational search powered by Generative AI!

AI OnAI Off

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 has 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 the application:

using EPiServer.ServiceLocation; using Microsoft.Extensions.DependencyInjection; using System; namespace SampleBlob { public class Startup { public void ConfigureServices(IServiceCollection services) { services.AddAzureBlobProvider("Azure", o => { o.ConnectionString = { The Azure storage connection string }; o.ContainerName = { The container name }; }); } } }

Did this page help you?