WebApi - IHttpActionResult return methods List Temmuz 14, 2021 Bağlantıyı al Facebook X Pinterest E-posta Diğer Uygulamalar // Example: Return IHttpActionResult Type using Ok() and NotFound() Methods Copypublic IHttpActionResult Get(int id){ Student stud = GetStudentFromDB(id); if (stud == null) { return NotFound(); } return Ok(stud);} Yorumlar
Yorumlar
Yorum Gönder