コード例 #1
0
 public ActionResult <string> Delete(int id)
 {
     try
     {
         string userId = HttpContext.User.FindFirst(ClaimTypes.NameIdentifier).Value;
         return(Ok(_cs.Delete(id, userId)));
     }
     catch (System.Exception err)
     {
         return(BadRequest(err.Message));
     }
 }
コード例 #2
0
 public ActionResult <string> Delete(int id)
 {
     try
     {
         Claim user = HttpContext.User.FindFirst(ClaimTypes.NameIdentifier);
         if (user == null)
         {
             throw new Exception("you must be logged in to delete");
         }
         string userId = user.Value;
         return(Ok(_cs.Delete(id, userId)));
     }
     catch (System.Exception error)
     {
         return(BadRequest(error.Message));
     }
 }