2 implementations of Count
Microsoft.AspNetCore.Http (2)
QueryCollection.cs (1)
89
public int
Count
QueryCollectionInternal.cs (1)
41
public int
Count
=> Store.Count;
5 references to Count
Microsoft.AspNetCore.Components.Endpoints (1)
CacheView\CacheViewKeyResolver.cs (1)
188
var names = new List<string>(request.Query.
Count
);
Microsoft.AspNetCore.Mvc.Core (3)
ModelBinding\JQueryQueryStringValueProviderFactory.cs (2)
21
if (query != null && query.
Count
> 0)
25
JQueryKeyValuePairNormalizer.GetValues(query, query.
Count
),
ModelBinding\QueryStringValueProviderFactory.cs (1)
22
if (query != null && query.
Count
> 0)
Microsoft.AspNetCore.OutputCaching (1)
OutputCacheKeyProvider.cs (1)
202
if (varyQueryKeys.Count == 1 && string.Equals(varyQueryKeys[0], "*", StringComparison.Ordinal) && context.HttpContext.Request.Query.
Count
> 0)