You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 14, 2018. It is now read-only.
From @mitchellj on Thursday, 09 August 2018 20:06:10
When we are trying to use IFormFile it works perfectly when we are not using [ApiController], as soon as we introduce ApiController one of two things happens
If we do not prefix with [FromForm] we get a Serialization exception which generates a Bad Request response.
If we do prefix FromForm to the IFormFile then it becomes null
In order to get IFormFile to work we need to remove ApiController completely in which case the IFormFile becomes completely propagated correctly.