1 write to Name
Microsoft.AspNetCore.Http.Abstractions (1)
src\Shared\PropertyHelper\PropertyHelper.cs (1)
55Name = property.Name;
10 references to Name
Microsoft.AspNetCore.Http.Abstractions (10)
Routing\RouteValueDictionary.cs (8)
633if (string.Equals(storage.Properties[i].Name, key, StringComparison.OrdinalIgnoreCase)) 686array[i] = new KeyValuePair<string, object?>(property.Name, property.GetValue(storage.Value)); 779if (string.Equals(properties[i].Name, key, StringComparison.OrdinalIgnoreCase)) 859Current = new KeyValuePair<string, object?>(property.Name, property.GetValue(storage.Value)); 907if (names.TryGetValue(property.Name, out var duplicate)) 911property.Name, 912duplicate.Name, 917names.Add(property.Name, property);
src\Shared\PropertyHelper\PropertyHelper.cs (2)
335dictionary[helper.Name] = helper.GetValue(value); 461var declaredProperty = currentType.GetProperty(propertyHelper.Name, DeclaredOnlyLookup);