1 write to Name
Microsoft.AspNetCore.Mvc.Core (1)
src\Shared\PropertyHelper\PropertyHelper.cs (1)
55
Name
= property.Name;
6 references to Name
Microsoft.AspNetCore.Mvc.Core (4)
ModelBinding\Metadata\DefaultBindingMetadataProvider.cs (1)
128
string.Equals(property.
Name
, parameter.Name, StringComparison.Ordinal) &&
ModelBinding\Metadata\DefaultModelMetadataProvider.cs (1)
221
if (propertyHelper.
Name
== propertyKey.Name)
src\Shared\PropertyHelper\PropertyHelper.cs (2)
335
dictionary[helper.
Name
] = helper.GetValue(value);
461
var declaredProperty = currentType.GetProperty(propertyHelper.
Name
, DeclaredOnlyLookup);
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlAttributePropertyHelper.cs (1)
22
Name = propertyHelper.
Name
is string name ? name.Replace('_', '-') : null;
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
HtmlAttributePropertyHelperTest.cs (1)
108
Assert.Equal("bar_baz1", helpers2[0].
Name
);