Class ClientResources
Helper methods to require and render client resources.
Inheritance
Namespace: EPiServer.Framework.Web.Resources
Assembly: EPiServer.Framework.AspNetCore.dll
Version: 12.0.3Syntax
public static class ClientResources : Object
Methods
Render(ClientResource)
Renders a html tag for the specific resource
Declaration
public static HtmlString Render(ClientResource resource)
Parameters
Type | Name | Description |
---|---|---|
Client |
resource | The resource to render. |
Returns
Type | Description |
---|---|
Microsoft. |
A script html tag or css html tag |
RenderRequiredResources(String)
Renders the required client resources for specified area.
Declaration
public static HtmlString RenderRequiredResources(string renderingArea)
Parameters
Type | Name | Description |
---|---|---|
System. |
renderingArea | The rendering area. |
Returns
Type | Description |
---|---|
Microsoft. |
RenderResources(String)
Renders client resources with specified name.
Declaration
public static IHtmlContent RenderResources(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name of the client resources. |
Returns
Type | Description |
---|---|
Microsoft. |
RenderResources(String, ClientResourceType[])
Renders client resources with specified name and type.
Declaration
public static HtmlString RenderResources(string name, ClientResourceType[] resourceTypes)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name of the client resources. |
Client |
resourceTypes | Only render resources for these types. |
Returns
Type | Description |
---|---|
Microsoft. |
Require(ClientResource)
Requires the specified client resource.
Declaration
public static ClientResourceSettings Require(ClientResource clientResource)
Parameters
Type | Name | Description |
---|---|---|
Client |
clientResource | The client resource. |
Returns
Type | Description |
---|---|
Client |
Require(String)
Requires the client resource with specified name.
Declaration
public static ClientResourceSettings Require(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name. |
Returns
Type | Description |
---|---|
Client |
Require(String, String, String, ClientResourceType, IEnumerable<String>, Int32, Boolean)
Requires the client resource with specified properties.
Declaration
public static ClientResourceSettings Require(string path, string inlineContent, string name, ClientResourceType resourceType, IEnumerable<string> dependencies, int sortIndex, bool isMinified)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | The client resource virtual path path or URL. |
System. |
inlineContent | Content of the inline client resource that does not reference any path. |
System. |
name | The client resource name. |
Client |
resourceType | The client resource type. |
System. |
dependencies | The names of other client resources that this resource depends on. |
System. |
sortIndex | Sort index for this client resource within the group with the same name. |
System. |
isMinified | Indicates whether the content of the client resource is minified. |
Returns
Type | Description |
---|---|
Client |
RequireHtmlInline(String)
Requires the inline HTML injection.
Declaration
public static ClientResourceSettings RequireHtmlInline(string inlineContent)
Parameters
Type | Name | Description |
---|---|---|
System. |
inlineContent | Inline injection content. |
Returns
Type | Description |
---|---|
Client |
RequireHtmlInline(String, String, IEnumerable<String>)
Requires the inline HTML injection.
Declaration
public static ClientResourceSettings RequireHtmlInline(string inlineContent, string name, IEnumerable<string> dependencies)
Parameters
Type | Name | Description |
---|---|---|
System. |
inlineContent | Inline injection content. |
System. |
name | The client resource name. |
System. |
dependencies | The names of other client resources that this resource depends on. |
Returns
Type | Description |
---|---|
Client |
RequireScript(String)
Requires the JavaScript resource with specified path.
Declaration
public static ClientResourceSettings RequireScript(string scriptPath)
Parameters
Type | Name | Description |
---|---|---|
System. |
scriptPath | The script resource virtual path path or URL. |
Returns
Type | Description |
---|---|
Client |
RequireScript(String, String, IEnumerable<String>)
Requires the JavaScript resource with specified path.
Declaration
public static ClientResourceSettings RequireScript(string scriptPath, string name, IEnumerable<string> dependencies)
Parameters
Type | Name | Description |
---|---|---|
System. |
scriptPath | The script resource virtual path path or URL. |
System. |
name | The client resource name. |
System. |
dependencies | The names of other client resources that this script depends on. |
Returns
Type | Description |
---|---|
Client |
RequireScriptInline(String)
Requires the inline JavaScript.
Declaration
public static ClientResourceSettings RequireScriptInline(string scriptContent)
Parameters
Type | Name | Description |
---|---|---|
System. |
scriptContent | Inline script content. |
Returns
Type | Description |
---|---|
Client |
RequireScriptInline(String, String, IEnumerable<String>)
Requires the inline JavaScript.
Declaration
public static ClientResourceSettings RequireScriptInline(string scriptContent, string name, IEnumerable<string> dependencies)
Parameters
Type | Name | Description |
---|---|---|
System. |
scriptContent | Inline script content. |
System. |
name | The client resource name. |
System. |
dependencies | The names of other client resources that this script depends on. |
Returns
Type | Description |
---|---|
Client |
RequireStyle(String)
Requires the CSS resource with specified path.
Declaration
public static ClientResourceSettings RequireStyle(string cssPath)
Parameters
Type | Name | Description |
---|---|---|
System. |
cssPath | The CSS resource virtual path path or URL. |
Returns
Type | Description |
---|---|
Client |
RequireStyle(String, String, IEnumerable<String>)
Requires the CSS resource with specified path.
Declaration
public static ClientResourceSettings RequireStyle(string cssPath, string name, IEnumerable<string> dependencies)
Parameters
Type | Name | Description |
---|---|---|
System. |
cssPath | The CSS resource virtual path path or URL. |
System. |
name | The client resource name. |
System. |
dependencies | The names of other client resources that this CSS resource depends on. |
Returns
Type | Description |
---|---|
Client |
RequireStyleInline(String)
Requires the inline CSS block.
Declaration
public static ClientResourceSettings RequireStyleInline(string cssContent)
Parameters
Type | Name | Description |
---|---|---|
System. |
cssContent | CSS content. |
Returns
Type | Description |
---|---|
Client |
RequireStyleInline(String, String, IEnumerable<String>)
Requires the inline CSS block.
Declaration
public static ClientResourceSettings RequireStyleInline(string cssContent, string name, IEnumerable<string> dependencies)
Parameters
Type | Name | Description |
---|---|---|
System. |
cssContent | CSS content. |
System. |
name | The client resource name. |
System. |
dependencies | The names of other client resources that this CSS resource depends on. |
Returns
Type | Description |
---|---|
Client |