Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

increase timeout in .net core web app

<security>
    <requestFiltering>
      <!-- This will handle requests up to 300MB -->
      <requestLimits maxAllowedContentLength="314572800" />
    </requestFiltering>
</security>
Comment

increase timeout in .net core web app

services.Configure<FormOptions>(options =>
{
    options.ValueLengthLimit = int.MaxValue;
    options.MultipartBodyLengthLimit = long.MaxValue; // <-- ! long.MaxValue
    options.MultipartBoundaryLengthLimit = int.MaxValue;
    options.MultipartHeadersCountLimit = int.MaxValue;
    options.MultipartHeadersLengthLimit = int.MaxValue;
});
Comment

PREVIOUS NEXT
Code Example
Csharp :: instantiate unity 
Csharp :: c# multiply string 
Csharp :: cannot convert string to generic type c# 
Csharp :: c# first item i list 
Csharp :: how to set the frame rate unity 
Csharp :: convert string into double in c# 
Csharp :: c# if statement one line 
Csharp :: copy 2d arrays C# 
Csharp :: get layermask from gameobject layer unity 
Csharp :: c# shuffle 
Csharp :: run wpf application maximized 
Csharp :: unity show colliders 
Csharp :: const class in c sharp 
Csharp :: google sheet script change text color 
Csharp :: capitalize c# 
Csharp :: sort array by parity 
Csharp :: System command c# 
Csharp :: c# underscore variable 
Csharp :: how to look for substring in string in c# 
Csharp :: wpf make size fill all grid 
Csharp :: unity cast int to float 
Csharp :: optimistic update 
Csharp :: remove adjacent duplicate characters 
Csharp :: coroutine start unity 
Csharp :: c# mongodb update multiple fields 
Csharp :: roman to number 
Csharp :: fluent assertions exception 
Csharp :: c# console password 
Csharp :: get property value from object c# 
Csharp :: qtablewidget add image 
ADD CONTENT
Topic
Content
Source link
Name
4+6 =