The @tagHelperPrefix
directive allows you to specify a tag prefix string to enable Tag Helper support and to make Tag Helper usage explicit.
For example, you could add the following markup to the Views/_ViewImports.cshtml
file:
@tagHelperPrefix cst:
This allows you to enable Tag Helper support by using this prefix (cst
). Only those elements using the prefix cst
, support the Tag Helpers (Tag Helper-enabled elements have a distinctive font/color).
In the code image below, the <label>
element have the Tag Helper prefix (cst
), so the Tag Helper is enabled for this element.
While the <input>
element doesn't have Tag Helper prefix (cst
), so Tag Helper is not enabled for this element, this is just a regular HTML element.
The same hierarchy rules that apply to @addTagHelper
also apply to @tagHelperPrefix
.
References: