4 overrides of BinderType
Microsoft.AspNetCore.Grpc.Swagger (1)
Internal\GrpcModelMetadata.cs (1)
20public override Type BinderType { get; }
Microsoft.AspNetCore.Mvc.Abstractions.Test (1)
ModelBinding\ModelMetadataTest.cs (1)
479public override Type 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;
12 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,
Microsoft.AspNetCore.Mvc.Core.Test (5)
ModelBinding\Binders\ComplexObjectModelBinderTest.cs (1)
1099BinderType = metadata.BinderType,
ModelBinding\Binders\ComplexTypeModelBinderTest.cs (1)
1263BinderType = metadata.BinderType,
ModelBinding\Binders\HeaderModelBinderTests.cs (1)
382BinderType = metadata.BinderType,
ModelBinding\TestModelBinderProviderContext.cs (2)
34BinderType = Metadata.BinderType, 49BinderType = Metadata.BinderType,
Microsoft.AspNetCore.Mvc.DataAnnotations.Test (3)
ModelMetadataProviderTest.cs (3)
618Assert.Null(metadata.BinderType); 637Assert.Same(typeof(ComplexObjectModelBinder), metadata.BinderType); 656Assert.Same(typeof(ComplexObjectModelBinder), metadata.BinderType);