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