1 write to Properties
Microsoft.AspNetCore.Http.Abstractions (1)
Routing\RouteValueDictionary.cs (1)
892
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;
629
for (var i = 0; i < storage.
Properties
.Length; i++)
631
if (string.Equals(storage.
Properties
[i].Name, key, StringComparison.OrdinalIgnoreCase))
633
value = storage.
Properties
[i].GetValue(storage.Value);
678
capacity = Math.Max(DefaultCapacity, Math.Max(storage.
Properties
.Length, capacity));
681
for (var i = 0; i < storage.
Properties
.Length; i++)
683
var property = storage.
Properties
[i];
774
var properties = _propertyStorage.
Properties
;
856
var property = storage.
Properties
[_index];
890
if (!_propertyCache.TryGetValue(type, out
Properties
!))
893
ValidatePropertyNames(type,
Properties
);
894
_propertyCache.TryAdd(type,
Properties
);