SaaS CMS has officially launched! Learn more now.

Interface IRequestTemplateTagProvider

Defines signature for a provider that resolves tags that are used to resolve templates through ITemplateResolver

Namespace: EPiServer.Web.Templating
Assembly: EPiServer.Cms.AspNetCore.Templating.dll
Version: 12.0.3
Syntax
public interface IRequestTemplateTagProvider

Properties

Order

Specifies in which order the provider should be called

Declaration
int Order { get; }
Property Value
Type Description
System.Int32

Methods

Resolve(HttpContext)

Resolves tags from current request.

Declaration
IEnumerable<string> Resolve(HttpContext request)
Parameters
Type Name Description
Microsoft.AspNetCore.Http.HttpContext request

The request

Returns
Type Description
System.Collections.Generic.IEnumerable<System.String>

All tags that could be resolved

Extension Methods