I am currently working on a C # web API. For a specific call, I need to send 2 images using an ajax call to the API so that the API can save them as varbinary (max) in the database.
- How to extract
Image or byte[] from an HttpContent object? - How do i do this twice? Once for each image.
-
var authToken = $("#AuthToken").val(); var formData = new FormData($('form')[0]); debugger; $.ajax({ url: "/api/obj/Create/", headers: { "Authorization-Token": authToken }, type: 'POST', xhr: function () { var myXhr = $.ajaxSettings.xhr(); return myXhr; }, data: formData, cache: false, contentType: false, processData: false });
-
public async Task<int> Create(HttpContent content) { if (!content.IsMimeMultipartContent()) { throw new UnsupportedMediaTypeException("MIME Multipart Content is not supported"); } return 3; }
source share