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