Try our conversational search powered by Generative AI!

Interface IVirtualPathProviderModule

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.AspNet.dll
Version: 11.20.7
Syntax
public interface IVirtualPathProviderModule

Methods

CreateProviders(InitializationEngine)

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

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

The context

Returns
Type Description
System.Collections.Generic.IEnumerable<System.Web.Hosting.VirtualPathProvider>

A list of providers

Extension Methods