Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Interface IFileProviderModule

Can be implemented by a class to create a list of virtual path providers available early when EPiServer Framework initializes

Namespace: EPiServer.Web.Hosting
Assembly: EPiServer.Framework.AspNetCore.dll
Version: 12.0.3
Syntax
public interface IFileProviderModule

Methods

CreateProviders(InitializationEngine)

Method is called the EPiServer Framework initializes to give a chance to register providers as early as possible

Declaration
IEnumerable<IBasePathFileProvider> CreateProviders(InitializationEngine context)
Parameters
Type Name Description
InitializationEngine context

The context

Returns
Type Description
System.Collections.Generic.IEnumerable<IBasePathFileProvider>

A list of providers

Extension Methods