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