コード例 #1
0
 public WeatherForecast Post(WeatherForecast weather)
 {
     return(weather);
 }
コード例 #2
0
 public ActionResult Post([FromBody] WeatherForecast forecast)
 {
     return(Ok("Success!"));
 }
コード例 #3
0
 public IActionResult post(WeatherForecast weatherForecast)
 {
     return(Ok());
 }