c# – Request body stream timed out in safari ios

Question:

I am working on a system developed in , which has authentication, I am implementing a " FileUpload " control, which works correctly in Desktop browsers, but when I test on iPad the problem occurs:

"Request body sequence exhausted"

I have read in other posts that the problem is due to Windows authentication, but disabling it is not an option for the client.

Answer:

This question has been around for quite some time, but I'm answering in case it can help someone.

You could use the property:

Environment.OSVersion

Which returns the system used and from there run the application with or without authentication.

Scroll to Top