Try our conversational search powered by Generative AI!

Interface IClientResourceProvider

Classes implementing this interface are used to provide client resources to the site

Namespace: EPiServer.Framework.Web.Resources
Assembly: EPiServer.Framework.AspNet.dll
Version: 11.20.7
Syntax
public interface IClientResourceProvider
Remarks

Besides implementing the resource provider interface providers must also be exported for usage by the composition container. This is typically done by the class' assembly beeing configured in web.config.

Methods

GetClientResources()

This method is called when the client resources are collected

Declaration
IEnumerable<ClientResource> GetClientResources()
Returns
Type Description
System.Collections.Generic.IEnumerable<ClientResource>

A list of ClientResources that this provider exposes.

Extension Methods