2 writes to MaxResponseBufferSize
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (2)
KestrelServerLimitsTests.cs (2)
25(new KestrelServerLimits()).MaxResponseBufferSize = value; 37o.MaxResponseBufferSize = value;
7 references to MaxResponseBufferSize
Microsoft.AspNetCore.Server.Kestrel.Core (5)
Internal\Http\Http1Connection.cs (1)
90TimeoutControl.StartDrainTimeout(MinResponseDataRate, ServerOptions.Limits.MaxResponseBufferSize);
Internal\Http2\Http2Connection.cs (1)
431TimeoutControl.StartDrainTimeout(Limits.MinResponseDataRate, Limits.MaxResponseBufferSize);
KestrelServerLimits.cs (3)
312writer.WritePropertyName(nameof(MaxResponseBufferSize)); 313if (MaxResponseBufferSize is null) 319writer.WriteNumberValue(MaxResponseBufferSize.Value);
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (2)
KestrelServerLimitsTests.cs (2)
15Assert.Equal(64 * 1024, (new KestrelServerLimits()).MaxResponseBufferSize); 38Assert.Equal(value, o.MaxResponseBufferSize);