17 instantiations of HttpGetAttribute
AspireWithMaui.WeatherApi (1)
Controllers\WeatherForecastController.cs (1)
14[HttpGet(Name = "GetWeatherForecast")]
Microsoft.AspNetCore.Diagnostics.Middleware.Tests (16)
Logging\ApiRoutingController.cs (1)
20[HttpGet("{userId}/{noDataClassification}")]
Logging\AttributeRoutingController.cs (6)
15[HttpGet("")] 16[HttpGet("all")] 19[HttpGet("get-1/{param:int:min(1)}")] 22[HttpGet("get-2/{param?}")] 25[HttpGet("get-3/{param=all}")] 28[HttpGet("get-4/{param=all}")]
Logging\MixedRoutingController.cs (4)
16[HttpGet("mixed/attribute-routing-1/{param:int:min(1)}")] 19[HttpGet("mixed/attribute-routing-2/{param?}")] 22[HttpGet("mixed/attribute-routing-3/{param=all}")] 25[HttpGet("mixed/attribute-routing-4/{param=all}")]
Logging\TestController.cs (5)
16[HttpGet] 25[HttpGet] 34[HttpGet] 43[HttpGet] 51[HttpGet]
2 references to HttpGetAttribute
Microsoft.AspNetCore.Mvc.Core (2)
HttpGetAttribute.cs (2)
17/// Creates a new <see cref="HttpGetAttribute"/>. 25/// Creates a new <see cref="HttpGetAttribute"/> with the given route template.