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)
631if (string.Equals(storage.Properties[i].Name, key, StringComparison.OrdinalIgnoreCase)) 684array[i] = new KeyValuePair<string, object?>(property.Name, property.GetValue(storage.Value)); 777if (string.Equals(properties[i].Name, key, StringComparison.OrdinalIgnoreCase)) 857Current = new KeyValuePair<string, object?>(property.Name, property.GetValue(storage.Value)); 905if (names.TryGetValue(property.Name, out var duplicate)) 909property.Name, 910duplicate.Name, 915names.Add(property.Name, property);
src\Shared\PropertyHelper\PropertyHelper.cs (2)
335dictionary[helper.Name] = helper.GetValue(value); 461var declaredProperty = currentType.GetProperty(propertyHelper.Name, DeclaredOnlyLookup);