예제 #1
0
 public ActionResult SampleFailPost([FromBody] SampleInput input)
 {
     throw new Exception();
 }
예제 #2
0
 public ActionResult SampleSuccessPost([FromBody] SampleInput input)
 {
     return(Ok());
 }