LabelTagHelper Class

Definition

ITagHelper implementation targeting <label> elements with an asp-for attribute.

public ref class LabelTagHelper : Microsoft::AspNetCore::Razor::TagHelpers::TagHelper
[Microsoft.AspNetCore.Razor.TagHelpers.HtmlTargetElement("label", Attributes="asp-for")]
public class LabelTagHelper : Microsoft.AspNetCore.Razor.TagHelpers.TagHelper
[<Microsoft.AspNetCore.Razor.TagHelpers.HtmlTargetElement("label", Attributes="asp-for")>]
type LabelTagHelper = class
    inherit TagHelper
Public Class LabelTagHelper
Inherits TagHelper
Inheritance
LabelTagHelper
Attributes

Constructors

LabelTagHelper(IHtmlGenerator)

Creates a new LabelTagHelper.

Properties

For

An expression to be evaluated against the current model.

Generator

Gets the IHtmlGenerator used to generate the LabelTagHelper's output.

Order

When a set of ITagHelpers are executed, their Init(TagHelperContext)'s are first invoked in the specified Order; then their ProcessAsync(TagHelperContext, TagHelperOutput)'s are invoked in the specified Order. Lower values are executed first.

ViewContext

Gets the ViewContext of the executing view.

Methods

Init(TagHelperContext)

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.

(Inherited from TagHelper)
Process(TagHelperContext, TagHelperOutput)

Synchronously executes the TagHelper with the given context and output.

(Inherited from TagHelper)
ProcessAsync(TagHelperContext, TagHelperOutput)

Asynchronously executes the TagHelper with the given context and output.

Applies to