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