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)
633
if (string.Equals(storage.Properties[i].
Name
, key, StringComparison.OrdinalIgnoreCase))
686
array[i] = new KeyValuePair<string, object?>(property.
Name
, property.GetValue(storage.Value));
779
if (string.Equals(properties[i].
Name
, key, StringComparison.OrdinalIgnoreCase))
859
Current = new KeyValuePair<string, object?>(property.
Name
, property.GetValue(storage.Value));
907
if (names.TryGetValue(property.
Name
, out var duplicate))
911
property.
Name
,
912
duplicate.
Name
,
917
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);