I\'m still learning web API, so pardon me if my question sounds stupid.
I have this in my StudentController:
public HttpResponseMessage
After Three days of searching and none of above solutions worked for me , I found another approach to this problem in this Link: HttpRequestMessage
I used one of the solutions in this site
[HttpPost]
public async System.Threading.Tasks.Task Post(HttpRequestMessage request)
{
string body = await request.Content.ReadAsStringAsync();
return body;
}