Interface IClientResourceProvider
Classes implementing this interface are used to provide client resources to the site
Namespace: EPiServer.Framework.Web.Resources
Assembly: EPiServer.Framework.AspNetCore.dll
Version: 12.0.3Syntax
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. |