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