1 write to Properties
Microsoft.AspNetCore.Http.Abstractions (1)
Routing\RouteValueDictionary.cs (1)
894
Properties
= PropertyHelper.GetVisibleProperties(type, allPropertiesCache: null, visiblePropertiesCache: null);
12 references to Properties
Microsoft.AspNetCore.Http.Abstractions (12)
Routing\RouteValueDictionary.cs (12)
153
_count = storage.
Properties
.Length;
631
for (var i = 0; i < storage.
Properties
.Length; i++)
633
if (string.Equals(storage.
Properties
[i].Name, key, StringComparison.OrdinalIgnoreCase))
635
value = storage.
Properties
[i].GetValue(storage.Value);
680
capacity = Math.Max(DefaultCapacity, Math.Max(storage.
Properties
.Length, capacity));
683
for (var i = 0; i < storage.
Properties
.Length; i++)
685
var property = storage.
Properties
[i];
776
var properties = _propertyStorage.
Properties
;
858
var property = storage.
Properties
[_index];
892
if (!_propertyCache.TryGetValue(type, out
Properties
!))
895
ValidatePropertyNames(type,
Properties
);
896
_propertyCache.TryAdd(type,
Properties
);