Implemented interface members:
11 references to Count
Microsoft.AspNetCore.Components (11)
Routing\RouteTable.cs (1)
63if (routeContext.RouteValues != null && routeContext.RouteValues.Count == 0)
src\Http\Http.Abstractions\src\Routing\RouteValueDictionary.cs (8)
447if (arrayIndex < 0 || arrayIndex > array.Length || array.Length - arrayIndex < Count) 452if (Count == 0) 457EnsureCapacity(Count); 484if (Count == 0) 491EnsureCapacity(Count); 514if (Count == 0) 596EnsureCapacity(Count + 1); 597_arrayStorage[Count] = new KeyValuePair<string, object?>(key, value);
src\Http\Routing\src\Patterns\RoutePatternFactory.cs (2)
459if (defaults != null && defaults.Count > 0) 461updatedDefaults = new Dictionary<string, object?>(defaults.Count, StringComparer.OrdinalIgnoreCase);