Hello,
I'm currently getting a System.StackOverflowException whenever I attempt to upload a file using the File Manager, combined with a slightly customized AzureFileProvider (I had to modify several of the class methods to implement revolving azure access keys that we have implemented on our storage account)
Most if not all functions seem to be working fine except actually uploading files.
The Overflow appears to be happening very early on in the post lifecyle shortly failing directly after all middleware has been called. I get the error on the awaiter for _next on my last custom middleware implementation.
My base controller get's hit and I can unwrap the httpcontext (nothing looks unusual) then my middleware get's instantiated and fails before moving out to execute the called method on my FilesController.
Very strange and I'm not getting much out of tracing the callstack and of course the exception details are barren.
The application is currently targeting .Net Core 2.2 and I am using as of this writing the latest nuget for syncfusion.
Thank you for any input.