2 overrides of BinderType
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
EndpointModelMetadata.cs (1)
20public override Type? BinderType { get; }
Microsoft.AspNetCore.Mvc.Core (1)
ModelBinding\Metadata\DefaultModelMetadata.cs (1)
173public override Type? BinderType => BindingMetadata.BinderType;
4 references to BinderType
Microsoft.AspNetCore.Mvc.Abstractions (2)
ModelBinding\BindingInfo.cs (2)
239if (BinderType == null && modelMetadata.BinderType != null) 242BinderType = modelMetadata.BinderType;
Microsoft.AspNetCore.Mvc.Core (2)
ModelBinding\Metadata\BindingMetadata.cs (1)
34/// model. See <see cref="ModelMetadata.BinderType"/>.
ModelBinding\ModelBindingHelper.cs (1)
257BinderType = modelMetadata.BinderType,