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