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