I want to know what is the default maximum request length in the .net core.
I read from several links that the default limit is 4 MB for asp.net applications, and the same should apply here.
But when testing, I found that even without overriding the default limit, I can upload files about 14 MB in size, but this fails for files about 30 MB in size.
I know exactly how to increase this limit, but I want to know what is the default limit. Is there any C # code to check? Could not find related documentation.
source share