Install Azure BLOB provider for Optimizely CMS 13
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.
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(o => {
o.ConnectionString = "<The Azure storage connection string>";
o.ContainerName = "<The container name>";
});
}
}
}Updated 12 days ago
