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