1 instantiation of MvcForm
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
700return new MvcForm(ViewContext, _htmlEncoder);
53 references to MvcForm
Microsoft.AspNetCore.Mvc.ViewFeatures (53)
HtmlHelper.cs (10)
227public MvcForm BeginForm( 245public MvcForm BeginRouteForm( 264var mvcForm = CreateForm(); 694/// Override this method to return an <see cref="MvcForm"/> subclass. That subclass may change 697/// <returns>A new <see cref="MvcForm"/> instance.</returns> 698protected virtual MvcForm CreateForm() 891/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 896protected virtual MvcForm GenerateForm( 949/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 954protected virtual MvcForm GenerateRouteForm(
Rendering\HtmlHelperFormExtensions.cs (38)
17/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 22public static MvcForm BeginForm(this IHtmlHelper htmlHelper) 47/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 52public static MvcForm BeginForm(this IHtmlHelper htmlHelper, bool? antiforgery) 73/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 78public static MvcForm BeginForm(this IHtmlHelper htmlHelper, FormMethod method) 103/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 108public static MvcForm BeginForm( 142/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 147public static MvcForm BeginForm( 177/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 182public static MvcForm BeginForm(this IHtmlHelper htmlHelper, object routeValues) 203/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 208public static MvcForm BeginForm( 239/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 244public static MvcForm BeginForm( 270/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 275public static MvcForm BeginForm( 308/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 313public static MvcForm BeginForm( 345/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 350public static MvcForm BeginForm( 381/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 386public static MvcForm BeginRouteForm(this IHtmlHelper htmlHelper, object routeValues) 416/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 421public static MvcForm BeginRouteForm(this IHtmlHelper htmlHelper, object routeValues, bool? antiforgery) 440/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 445public static MvcForm BeginRouteForm(this IHtmlHelper htmlHelper, string routeName) 469/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 474public static MvcForm BeginRouteForm(this IHtmlHelper htmlHelper, string routeName, bool? antiforgery) 500/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 505public static MvcForm BeginRouteForm( 528/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 533public static MvcForm BeginRouteForm( 563/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 568public static MvcForm BeginRouteForm( 597/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 602public static MvcForm BeginRouteForm(
Rendering\IHtmlHelper.cs (4)
119/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 124MvcForm BeginForm( 155/// An <see cref="MvcForm"/> instance which renders the &lt;/form&gt; end tag when disposed. 160MvcForm BeginRouteForm(
Rendering\MvcForm.cs (1)
21/// Initializes a new instance of <see cref="MvcForm"/>.