Implemented interface member:
property
Name
Microsoft.AspNetCore.Mvc.Routing.IRouteTemplateProvider.Name
17 writes to Name
ApplicationModelWebSite (2)
Controllers\HomeController.cs (2)
22
[HttpGet("Home/CannotBeRouted",
Name
= nameof(SuppressPathMatching))]
30
[HttpGet("Home/SuppressLinkGeneration",
Name
= nameof(SuppressLinkGeneration))]
Microsoft.AspNetCore.Mvc.Core.Test (12)
ApplicationModels\ControllerActionDescriptorProviderTests.cs (12)
1567
[HttpGet("{id}",
Name
= "Products")]
1570
[HttpPut("{id}",
Name
= "Products")]
1576
[HttpDelete("{id}",
Name
= "Products")]
1579
[HttpGet("/Items/{id}",
Name
= "Items")]
1582
[HttpPost("/Items",
Name
= "Items")]
1585
[HttpPut("/Items/{id}",
Name
= "Items")]
1588
[HttpDelete("/Items/{id}",
Name
= "Items")]
1591
[HttpPatch("/Items",
Name
= "Items")]
1628
[HttpGet("{id}",
Name
= "Products")]
1631
[HttpGet("{ID}",
Name
= "Products")]
1634
[HttpPut("{id}",
Name
= "PRODUCTS")]
1637
[HttpDelete("{ID}", Order = 1,
Name
= "PRODUCTS")]
Mvc.RoutingWebSite (3)
Controllers\CompanyController.cs (2)
41
[HttpDelete(
Name
= "RemoveCompany")]
57
[HttpGet("Departments",
Name
= "Departments")]
Controllers\DynamicOrderController.cs (1)
17
[HttpGet("attribute-dynamic-order/{**slug}",
Name
= "AttributeRouteSlug")]