When uploading image through Advanced REST client app, I have chosen content type as "application/octet-stream"
And here is my code in Web Api controller
[HttpPost]
[Route("Upload")]
public Result Upload(Stream img)
{
//convertions here
}
The issue is am receiving input parameter as null value.
Could anyone help me out to fix this issue, please
Thanks in advance