London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

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.dll
Version: 10.10.4
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