RenderAtEndOfFormTagHelper Class

Definition

ITagHelper implementation targeting all form elements to generate content before the form end tag.

public ref class RenderAtEndOfFormTagHelper : Microsoft::AspNetCore::Razor::TagHelpers::TagHelper
[Microsoft.AspNetCore.Razor.TagHelpers.HtmlTargetElement("form")]
public class RenderAtEndOfFormTagHelper : Microsoft.AspNetCore.Razor.TagHelpers.TagHelper
[<Microsoft.AspNetCore.Razor.TagHelpers.HtmlTargetElement("form")>]
type RenderAtEndOfFormTagHelper = class
    inherit TagHelper
Public Class RenderAtEndOfFormTagHelper
Inherits TagHelper
Inheritance
RenderAtEndOfFormTagHelper
Attributes

Constructors

RenderAtEndOfFormTagHelper()

Properties

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.

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