Class HtmlHelperExtensions
Provides system extension methods for HtmlHelperExtensionPoint.
public static class HtmlHelperExtensions
- Inheritance
-
objectHtmlHelperExtensions
Methods
FormComponentsStyles(HtmlHelperExtensionPoint)
Renders necessary stylesheet link tags for using Form builder based forms on a live site. If no form component specific stylesheet is available, an empty string is returned.
public static IHtmlContent FormComponentsStyles(this HtmlHelperExtensionPoint htmlHelper)
Parameters
htmlHelper
HtmlHelperExtensionPointHtmlHelper extension.
Returns
- IHtmlContent
Returns stylesheet link tags for form components, or an empty string.
Remarks
Form components' additional stylesheets are expected to reside within the '~/Content/FormComponents' directory.
CSS files in that directory are bundled and this method renders a link tag referencing the bundle
in its href
attribute. The bundle exists only if the aforementioned directory does.
Exceptions
- ArgumentNullException
htmlHelper
isnull
.
FormZoneAsync(HtmlHelperExtensionPoint, string)
Renders form zone container.
public static Task<IHtmlContent> FormZoneAsync(this HtmlHelperExtensionPoint htmlHelper, string zoneName = null)
Parameters
htmlHelper
HtmlHelperExtensionPointHtmlHelper extension.
zoneName
stringForm zone name.
Returns
- Task<IHtmlContent>
Returns HTML markup representing form zone container.
Remarks
This API supports the framework infrastructure and is not intended to be used directly from your code.
Exceptions
- ArgumentException
Thrown when
zoneName
is empty.