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