9 references to MinRequestBodyDataRate
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Features\IHttpMinRequestBodyDataRateFeature.cs (2)
9
/// Instead, use <see cref="KestrelServerLimits.
MinRequestBodyDataRate
"/> for server-wide configuration which applies to both HTTP/2 and HTTP/1.x.
18
/// Instead, use <see cref="KestrelServerLimits.
MinRequestBodyDataRate
"/> for server-wide configuration which applies to both HTTP/2 and HTTP/1.x.
Internal\Http\HttpProtocol.cs (1)
375
MinRequestBodyDataRate = ServerOptions.Limits.
MinRequestBodyDataRate
;
Internal\Http2\Http2Connection.cs (2)
273
Debug.Assert(Limits.
MinRequestBodyDataRate
!= null);
275
Log.RequestBodyMinimumDataRateNotSatisfied(ConnectionId, null, Limits.
MinRequestBodyDataRate
.BytesPerSecond);
Internal\Http3\Http3Connection.cs (2)
913
Debug.Assert(Limits.
MinRequestBodyDataRate
!= null);
915
Log.RequestBodyMinimumDataRateNotSatisfied(ConnectionId, null, Limits.
MinRequestBodyDataRate
.BytesPerSecond);
KestrelServerLimits.cs (2)
322
writer.WriteString(nameof(
MinRequestBodyDataRate
),
MinRequestBodyDataRate
?.ToString());