9 references to BeginForm
BasicWebSite (2)
artifacts\obj\BasicWebSite\Release\net10.0\Microsoft.CodeAnalysis.Razor.Compiler\Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator\Areas_Area1_Views_RemoteAttribute_Home_Create_cshtml.g.cs (1)
82using (Html.BeginForm(FormMethod.Post, htmlAttributes: null, antiforgery: false))
artifacts\obj\BasicWebSite\Release\net10.0\Microsoft.CodeAnalysis.Razor.Compiler\Microsoft.NET.Sdk.Razor.SourceGenerators.RazorSourceGenerator\Views_RemoteAttribute_Home_Create_cshtml.g.cs (1)
82using (Html.BeginForm(FormMethod.Post, htmlAttributes: null, antiforgery: false))
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (7)
Rendering\HtmlHelperFormExtensionsTest.cs (2)
498var mvcForm = htmlHelper.BeginForm(method, antiforgery: true, htmlAttributes: htmlAttributes); 534var mvcForm = htmlHelper.BeginForm(method, antiforgery: false, htmlAttributes: htmlAttributes);
Rendering\HtmlHelperFormTest.cs (5)
432using (var form = htmlHelper.BeginForm(FormMethod.Post, antiforgery: null, htmlAttributes: null)) 471using (var form = htmlHelper.BeginForm(FormMethod.Post, antiforgery: false, htmlAttributes: null)) 509using (var form = htmlHelper.BeginForm(FormMethod.Get, antiforgery: null, htmlAttributes: null)) 549using (var form = htmlHelper.BeginForm(method, antiforgery: true, htmlAttributes: null)) 588using (var form = htmlHelper.BeginForm(FormMethod.Post, antiforgery: false, htmlAttributes: null))