7 references to BeginForm
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (7)
Rendering\HtmlHelperFormExtensionsTest.cs (2)
498
var mvcForm = htmlHelper.
BeginForm
(method, antiforgery: true, htmlAttributes: htmlAttributes);
534
var mvcForm = htmlHelper.
BeginForm
(method, antiforgery: false, htmlAttributes: htmlAttributes);
Rendering\HtmlHelperFormTest.cs (5)
432
using (var form = htmlHelper.
BeginForm
(FormMethod.Post, antiforgery: null, htmlAttributes: null))
471
using (var form = htmlHelper.
BeginForm
(FormMethod.Post, antiforgery: false, htmlAttributes: null))
509
using (var form = htmlHelper.
BeginForm
(FormMethod.Get, antiforgery: null, htmlAttributes: null))
549
using (var form = htmlHelper.
BeginForm
(method, antiforgery: true, htmlAttributes: null))
588
using (var form = htmlHelper.
BeginForm
(FormMethod.Post, antiforgery: false, htmlAttributes: null))