3 implementations of BinderType
Microsoft.AspNetCore.Mvc.Core (2)
BindPropertyAttribute.cs (1)
41
public Type?
BinderType
ModelBinderAttribute.cs (1)
59
public Type?
BinderType
Microsoft.AspNetCore.Mvc.DataAnnotations.Test (1)
ModelMetadataProviderTest.cs (1)
922
public Type
BinderType
{ get; set; }
4 references to BinderType
Microsoft.AspNetCore.Mvc.Abstractions (2)
ModelBinding\BindingInfo.cs (2)
130
if (binderTypeAttribute.
BinderType
!= null)
132
bindingInfo.BinderType = binderTypeAttribute.
BinderType
;
Microsoft.AspNetCore.Mvc.Core (2)
ModelBinding\Metadata\DefaultBindingMetadataProvider.cs (2)
34
if (binderTypeAttribute.
BinderType
!= null)
36
context.BindingMetadata.BinderType = binderTypeAttribute.
BinderType
;