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