19 instantiations of HttpDeleteAttribute
ApiExplorerWebSite (1)
Controllers\ApiExplorerResponseTypeWithApiConventionController.cs (1)
38[HttpDelete]
Microsoft.AspNetCore.Mvc.Core.Test (10)
ApplicationModels\ControllerActionDescriptorProviderTests.cs (4)
1576[HttpDelete("{id}", Name = "Products")] 1588[HttpDelete("/Items/{id}", Name = "Items")] 1637[HttpDelete("{ID}", Order = 1, Name = "PRODUCTS")] 1711[HttpDelete("list")]
ApplicationModels\DefaultApplicationModelProviderTest.cs (2)
1682[HttpDelete("{id}")] 1700[HttpDelete]
ApplicationModels\InferParameterBindingInfoConventionTest.cs (1)
955[HttpDelete("delete-by-status/{status:int?}")]
Infrastructure\ActionSelectorTest.cs (1)
1235[HttpDelete]
Routing\HttpMethodProviderAttributesTests.cs (1)
27data.Add(new HttpDeleteAttribute(), new[] { "DELETE" });
Routing\RouteTemplateProviderAttributesTest.cs (1)
25data.Add(new HttpDeleteAttribute());
Mvc.RoutingWebSite (3)
Controllers\CompanyController.cs (1)
41[HttpDelete(Name = "RemoveCompany")]
Controllers\EmployeeController.cs (1)
61[HttpDelete("{id}/Administrator")]
Controllers\FriendsController.cs (1)
25[HttpDelete]
Sandbox (1)
Controllers\ValuesController.cs (1)
39[HttpDelete("{id}")]
VersioningWebSite (4)
Controllers\CustomersController.cs (1)
53[HttpDelete("{id}")]
Controllers\ItemsController.cs (1)
45[HttpDelete]
Controllers\ItemsV2Controller.cs (1)
43[HttpDelete]
Controllers\MoviesController.cs (1)
47[HttpDelete("Movies/{id}")]
3 references to HttpDeleteAttribute
Microsoft.AspNetCore.Mvc.Core (2)
HttpDeleteAttribute.cs (2)
17/// Creates a new <see cref="HttpDeleteAttribute"/>. 25/// Creates a new <see cref="HttpDeleteAttribute"/> with the given route template.
Microsoft.AspNetCore.Mvc.Core.Test (1)
ApplicationModels\DefaultApplicationModelProviderTest.cs (1)
809Assert.Single(action.Attributes.OfType<HttpDeleteAttribute>());