1 implementation of IQueryFeature
Microsoft.AspNetCore.Http (1)
Features\QueryFeature.cs (1)
14public class QueryFeature : IQueryFeature
16 references to IQueryFeature
Microsoft.AspNetCore.Http (4)
Features\QueryFeature.cs (1)
12/// Default implementation for <see cref="IQueryFeature"/>.
Internal\DefaultHttpRequest.cs (3)
17private static readonly Func<IFeatureCollection, IQueryFeature?> _newQueryFeature = f => new QueryFeature(f); 52private IQueryFeature QueryFeature => 180public IQueryFeature? Query;
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.Features.cs (1)
17private static readonly Type IQueryFeatureType = typeof(global::Microsoft.AspNetCore.Http.Features.IQueryFeature);
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Internal\Http\HttpProtocol.Generated.cs (9)
64internal protected IQueryFeature? _currentIQueryFeature; 228else if (key == typeof(IQueryFeature)) 380else if (key == typeof(IQueryFeature)) 382_currentIQueryFeature = (IQueryFeature?)value; 534else if (typeof(TFeature) == typeof(IQueryFeature)) 536feature = Unsafe.As<IQueryFeature?, TFeature?>(ref _currentIQueryFeature); 694else if (typeof(TFeature) == typeof(IQueryFeature)) 696_currentIQueryFeature = Unsafe.As<TFeature?, IQueryFeature?>(ref feature); 844yield return new KeyValuePair<Type, object>(typeof(IQueryFeature), _currentIQueryFeature);
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (2)
HttpProtocolFeatureCollection.cs (2)
75public IQueryFeature Get_IQueryFeature() 77return _collection.Get<IQueryFeature>();