1 implementation of IHttpMinResponseDataRateFeature
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\Http1Connection.FeatureCollection.cs (1)
11
IHttpMinResponseDataRateFeature
,
13 references to IHttpMinResponseDataRateFeature
Microsoft.AspNetCore.Server.Kestrel.Core (13)
Internal\Http\Http1Connection.FeatureCollection.cs (1)
25
MinDataRate?
IHttpMinResponseDataRateFeature
.MinDataRate
Internal\Http\Http1OutputProducer.cs (2)
31
private readonly
IHttpMinResponseDataRateFeature
_minResponseDataRateFeature;
78
IHttpMinResponseDataRateFeature
minResponseDataRateFeature,
Internal\Http\HttpProtocol.Generated.cs (9)
75
internal protected
IHttpMinResponseDataRateFeature
? _currentIHttpMinResponseDataRateFeature;
312
else if (key == typeof(
IHttpMinResponseDataRateFeature
))
464
else if (key == typeof(
IHttpMinResponseDataRateFeature
))
466
_currentIHttpMinResponseDataRateFeature = (
IHttpMinResponseDataRateFeature
?)value;
618
else if (typeof(TFeature) == typeof(
IHttpMinResponseDataRateFeature
))
620
feature = Unsafe.As<
IHttpMinResponseDataRateFeature
?, TFeature?>(ref _currentIHttpMinResponseDataRateFeature);
778
else if (typeof(TFeature) == typeof(
IHttpMinResponseDataRateFeature
))
780
_currentIHttpMinResponseDataRateFeature = Unsafe.As<TFeature?,
IHttpMinResponseDataRateFeature
?>(ref feature);
928
yield return new KeyValuePair<Type, object>(typeof(
IHttpMinResponseDataRateFeature
), _currentIHttpMinResponseDataRateFeature);
KestrelServerLimits.cs (1)
366
/// This can be overridden per-request via <see cref="
IHttpMinResponseDataRateFeature
"/>.