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 ICompositeFileProvider

Signature of a Microsoft.Extensions.FileProviders.IFileProvider that acts as a aggregate over several IBasePathFileProvider with a default fallback Microsoft.Extensions.FileProviders.IFileProvider

Namespace: EPiServer.Framework.Hosting
Assembly: EPiServer.Framework.AspNetCore.dll
Version: 12.0.3
Syntax
public interface ICompositeFileProvider : IFileProvider

Methods

AddProviders(IEnumerable<IBasePathFileProvider>)

Adds base path file providers to the composite provider

Declaration
void AddProviders(IEnumerable<IBasePathFileProvider> fileProviders)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<IBasePathFileProvider> fileProviders

The IBasePathFileProvider to add

Extension Methods