ITagHelper.Init(TagHelperContext) Method

Definition

Initializes the ITagHelper with the given context. Additions to Items should be done within this method to ensure they're added prior to executing the children.

public:
 void Init(Microsoft::AspNetCore::Razor::TagHelpers::TagHelperContext ^ context);
public void Init (Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext context);
abstract member Init : Microsoft.AspNetCore.Razor.TagHelpers.TagHelperContext -> unit
Public Sub Init (context As TagHelperContext)

Parameters

context
TagHelperContext

Contains information associated with the current HTML tag.

Remarks

When more than one ITagHelper runs on the same element, TagHelperOutput.GetChildContentAsync may be invoked prior to ProcessAsync(TagHelperContext, TagHelperOutput).

Applies to