10 implementations of Name
Microsoft.AspNetCore.Mvc.Core (7)
BindAttribute.cs (1)
49string? IModelNameProvider.Name => Prefix;
BindPropertyAttribute.cs (1)
79public string? Name { get; set; }
FromFormAttribute.cs (1)
19public string? Name { get; set; }
FromHeaderAttribute.cs (1)
19public string? Name { get; set; }
FromQueryAttribute.cs (1)
19public string? Name { get; set; }
FromRouteAttribute.cs (1)
22public string? Name { get; set; }
ModelBinderAttribute.cs (1)
100public string? Name { get; set; }
Microsoft.AspNetCore.Mvc.DataAnnotations.Test (3)
ModelMetadataProviderTest.cs (2)
957public string Name { get; set; } 962public string Name { get; set; }
TestModelNameProvider.cs (1)
10public string Name { get; set; }
4 references to Name
Microsoft.AspNetCore.Mvc.Abstractions (2)
ModelBinding\BindingInfo.cs (2)
119if (binderModelNameAttribute?.Name != null) 121bindingInfo.BinderModelName = binderModelNameAttribute.Name;
Microsoft.AspNetCore.Mvc.Core (2)
ModelBinding\Metadata\DefaultBindingMetadataProvider.cs (2)
24if (binderModelNameAttribute.Name != null) 26context.BindingMetadata.BinderModelName = binderModelNameAttribute.Name;