9 references to IConnectionSocketFeature
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (9)
src\aspnetcore\src\Servers\Kestrel\shared\TransportConnection.Generated.cs (9)
34
internal protected
IConnectionSocketFeature
? _currentIConnectionSocketFeature;
158
else if (key == typeof(
IConnectionSocketFeature
))
226
else if (key == typeof(
IConnectionSocketFeature
))
228
_currentIConnectionSocketFeature = (
IConnectionSocketFeature
?)value;
296
else if (typeof(TFeature) == typeof(
IConnectionSocketFeature
))
298
feature = Unsafe.As<
IConnectionSocketFeature
?, TFeature?>(ref _currentIConnectionSocketFeature);
372
else if (typeof(TFeature) == typeof(
IConnectionSocketFeature
))
374
_currentIConnectionSocketFeature = Unsafe.As<TFeature?,
IConnectionSocketFeature
?>(ref feature);
438
yield return new KeyValuePair<Type, object>(typeof(
IConnectionSocketFeature
), _currentIConnectionSocketFeature);