36 references to Get
Microsoft.AspNetCore.Mvc.TagHelpers (1)
FormTagHelper.cs (1)
92/// or if the <c>method</c> is <see cref="FormMethod.Get"/>; <c>true</c> otherwise.</value>
Microsoft.AspNetCore.Mvc.TagHelpers.Test (3)
FormTagHelperTest.cs (3)
373[InlineData(null, FormMethod.Get, "")] 374[InlineData(true, FormMethod.Get, "<input />")] 375[InlineData(false, FormMethod.Get, "")]
Microsoft.AspNetCore.Mvc.ViewFeatures (8)
HtmlHelper.cs (5)
645case FormMethod.Get: 884/// <paramref name="method"/> is not <see cref="FormMethod.Get"/>. 917var shouldGenerateAntiforgery = antiforgery ?? method != FormMethod.Get; 942/// <paramref name="method"/> is not <see cref="FormMethod.Get"/>. 973var shouldGenerateAntiforgery = antiforgery ?? method != FormMethod.Get;
Rendering\HtmlHelperFormExtensions.cs (1)
134/// <paramref name="method"/> is not <see cref="FormMethod.Get"/>.
Rendering\IHtmlHelper.cs (2)
112/// <paramref name="method"/> is not <see cref="FormMethod.Get"/>. 148/// <paramref name="method"/> is not <see cref="FormMethod.Get"/>.
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (24)
Rendering\HtmlHelperFormExtensionsTest.cs (9)
26FormMethod.Get, 399if (method != FormMethod.Get) 443if (method != FormMethod.Get) 683if (method != FormMethod.Get) 729if (method != FormMethod.Get) 775if (method != FormMethod.Get) 1167if (method != FormMethod.Get) 1211if (method != FormMethod.Get) 1255if (method != FormMethod.Get)
Rendering\HtmlHelperFormTest.cs (14)
28null, null, null, FormMethod.Get, null 31"Details", "Product", null, FormMethod.Get, null 37"Details", "Product", new { isprint = "false", showreviews = "false" }, FormMethod.Get, null 43"Details", "Product", new { isprint = "true", showreviews = "false" }, FormMethod.Get, 53FormMethod.Get, 74null, null, FormMethod.Get, null 80"default", null, FormMethod.Get, null 86"default", new { isprint = "false", showreviews = "false" }, FormMethod.Get, null 92"default", new { isprint = "true", showreviews = "false" }, FormMethod.Get, 102FormMethod.Get, 509using (var form = htmlHelper.BeginForm(FormMethod.Get, antiforgery: null, htmlAttributes: null)) 519[InlineData(FormMethod.Get)] 753method: FormMethod.Get, 765[InlineData(FormMethod.Get)]
Rendering\HtmlHelperTest.cs (1)
380[InlineData(FormMethod.Get, "get")]