4 instantiations of CurrentWeather
Sample (4)
Controllers\TestController.cs (4)
40
return TypedResults.Ok(new
CurrentWeather
(1.0f));
45
=> Ok(new
CurrentWeather
(-100));
50
=> Ok(new
CurrentWeather
(0));
55
=> Ok(new
CurrentWeather
(100));
4 references to CurrentWeather
Sample (4)
Controllers\TestController.cs (4)
38
public Ok<
CurrentWeather
> GetCurrentWeather()
44
public ActionResult<
CurrentWeather
> NoHttpMethod()
49
public ActionResult<
CurrentWeather
> HttpQueryMethod()
54
public ActionResult<
CurrentWeather
> UnsupportedHttpMethod()