Class UmbracoComponentRenderer
Methods used to render umbraco components as HTML in templates
Inheritance
Namespace: Umbraco.Cms.Core.Templates
Assembly: Umbraco.Core.dll
Syntax
public class UmbracoComponentRenderer : IUmbracoComponentRenderer
Remarks
Used by UmbracoHelper
Constructors
View SourceUmbracoComponentRenderer(IUmbracoContextAccessor, IMacroRenderer, ITemplateRenderer)
Initializes a new instance of the Umbraco
Declaration
public UmbracoComponentRenderer(IUmbracoContextAccessor umbracoContextAccessor, IMacroRenderer macroRenderer, ITemplateRenderer templateRenderer)
Parameters
Type | Name | Description |
---|---|---|
IUmbraco |
umbracoContextAccessor | |
IMacro |
macroRenderer | |
ITemplate |
templateRenderer |
Methods
View SourceRenderMacroAsync(Int32, String)
Renders the macro with the specified alias.
Declaration
public async Task<IHtmlEncodedString> RenderMacroAsync(int contentId, string alias)
Parameters
Type | Name | Description |
---|---|---|
System. |
contentId | The content id |
System. |
alias | The alias. |
Returns
Type | Description |
---|---|
Task<IHtml |
RenderMacroAsync(Int32, String, Nullable<IDictionary<String, Object>>)
Renders the macro with the specified alias, passing in the specified parameters.
Declaration
public async Task<IHtmlEncodedString> RenderMacroAsync(int contentId, string alias, IDictionary<string, object>? parameters)
Parameters
Type | Name | Description |
---|---|---|
System. |
contentId | The content id |
System. |
alias | The alias. |
System. |
parameters | The parameters. |
Returns
Type | Description |
---|---|
Task<IHtml |
RenderMacroAsync(Int32, String, Object)
Renders the macro with the specified alias, passing in the specified parameters.
Declaration
public async Task<IHtmlEncodedString> RenderMacroAsync(int contentId, string alias, object parameters)
Parameters
Type | Name | Description |
---|---|---|
System. |
contentId | The content id |
System. |
alias | The alias. |
System. |
parameters | The parameters. |
Returns
Type | Description |
---|---|
Task<IHtml |
RenderMacroForContent(IPublishedContent, String, Nullable<IDictionary<String, Object>>)
Renders the macro with the specified alias, passing in the specified parameters.
Declaration
public async Task<IHtmlEncodedString> RenderMacroForContent(IPublishedContent content, string alias, IDictionary<string, object>? parameters)
Parameters
Type | Name | Description |
---|---|---|
IPublished |
content | An IPublishedContent to use for the context for the macro rendering |
System. |
alias | The alias. |
System. |
parameters | The parameters. |
Returns
Type | Description |
---|---|
Task<IHtml |
A raw HTML string of the macro output |
Remarks
Currently only used when the node is unpublished and unable to get the contentId item from the content cache as its unpublished. This deals with taking in a preview/draft version of the content node
RenderTemplateAsync(Int32, Nullable<Int32>)
Renders the template for the specified pageId and an optional altTemplateId
Declaration
public async Task<IHtmlEncodedString> RenderTemplateAsync(int contentId, int? altTemplateId = null)
Parameters
Type | Name | Description |
---|---|---|
System. |
contentId | The content id |
System. |
altTemplateId | If not specified, will use the template assigned to the node |
Returns
Type | Description |
---|---|
Task<IHtml |