Hello,
When I return a List from the upload Controller, the Completed method (aka the UploadCompleteEventArgs) seems to crash if the list has too many objects. If the list is a few hundred it seems ok, but if the list is a few thousand the Completed method is never reached in during debug.
here is a snippet of the return, I don't think I'm doing anything strange here.
return Ok(new { List = json });
Any tips are appreciated.