13 writes to SupportsGet
Identity.DefaultUI.WebSite (1)
Pages\Contoso\Login.cshtml.cs (1)
33[BindProperty(SupportsGet = true)]
Microsoft.AspNetCore.Mvc.Abstractions.Test (1)
ModelBinding\BindingInfoTest.cs (1)
71new BindPropertyAttribute { Name = "PropertyPrefix", SupportsGet = true, },
Microsoft.AspNetCore.Mvc.IntegrationTests (1)
BindPropertyIntegrationTest.cs (1)
59BindingInfo = BindingInfo.GetBindingInfo(new[] { new BindPropertyAttribute() { SupportsGet = true } }),
Microsoft.AspNetCore.Mvc.RazorPages.Test (4)
ApplicationModels\DefaultPageApplicationModelProviderTest.cs (1)
1003[BindProperty(SupportsGet = true)]
Infrastructure\PageBinderFactoryTest.cs (3)
366RequestPredicate = ((IRequestPredicateProvider)new BindPropertyAttribute() { SupportsGet = true }).RequestPredicate, 425RequestPredicate = ((IRequestPredicateProvider)new BindPropertyAttribute() { SupportsGet = true }).RequestPredicate, 940[BindProperty(SupportsGet = true)]
RazorPagesWebSite (6)
Pages\PropertyBinding\PageModelWithPropertyBinding.cs (1)
17[BindProperty(SupportsGet = true)]
Pages\Validation\PageWithCompareValidation.cs (3)
12[BindProperty(SupportsGet = true)] 16[BindProperty(SupportsGet = true)] 20[BindProperty(SupportsGet = true)]
Pages\Validation\PageWithValidation.cs (2)
12[BindProperty(SupportsGet = true)] 16[BindProperty(SupportsGet = true)]
2 references to SupportsGet
Microsoft.AspNetCore.Mvc.Core (2)
BindPropertyAttribute.cs (2)
17/// indicates the property should not be bound for HTTP GET requests (see also <see cref="SupportsGet"/>). 82=> SupportsGet ? _supportsAllRequests : _supportsNonGetRequests;