16 writes to BinderType
Microsoft.AspNetCore.Mvc.Abstractions (3)
ModelBinding\BindingInfo.cs (3)
35BinderType = other.BinderType; 132bindingInfo.BinderType = binderTypeAttribute.BinderType; 242BinderType = modelMetadata.BinderType;
Microsoft.AspNetCore.Mvc.Core (1)
ModelBinding\ModelBindingHelper.cs (1)
257BinderType = modelMetadata.BinderType,
Microsoft.AspNetCore.Mvc.Core.Test (9)
ModelBinding\Binders\BinderTypeModelBinderProviderTest.cs (1)
30context.BindingInfo.BinderType = typeof(NullModelBinder);
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\ModelBinderFactoryTest.cs (2)
290BinderType = typeof(WidgetBinder), 295BinderType = typeof(WidgetBinder),
ModelBinding\ParameterBinderTest.cs (1)
36BinderType = typeof(SimpleTypeModelBinder),
ModelBinding\TestModelBinderProviderContext.cs (2)
34BinderType = Metadata.BinderType, 49BinderType = Metadata.BinderType,
Microsoft.AspNetCore.Mvc.IntegrationTests (3)
BinderTypeBasedModelBinderIntegrationTest.cs (3)
24BinderType = typeof(NullModelBinder) 58BinderType = typeof(NullModelNotSetModelBinder) 95BinderType = typeof(SuccessModelBinder),
10 references to BinderType
Microsoft.AspNetCore.Mvc.Abstractions (2)
ModelBinding\BindingInfo.cs (2)
35BinderType = other.BinderType; 239if (BinderType == null && modelMetadata.BinderType != null)
Microsoft.AspNetCore.Mvc.Abstractions.Test (3)
ModelBinding\BindingInfoTest.cs (3)
119Assert.Same(typeof(ComplexObjectModelBinder), bindingInfo.BinderType); 168Assert.Same(typeof(ComplexObjectModelBinder), bindingInfo.BinderType); 191Assert.Same(typeof(ComplexObjectModelBinder), bindingInfo.BinderType);
Microsoft.AspNetCore.Mvc.Core (3)
ModelBinding\Binders\BinderTypeModelBinder.cs (1)
13/// <see cref="BindingInfo.BinderType"/>.
ModelBinding\Binders\BinderTypeModelBinderProvider.cs (2)
10/// using <see cref="BindingInfo.BinderType"/>. 19if (context.BindingInfo.BinderType is Type binderType)
Microsoft.AspNetCore.Mvc.Core.Test (2)
ModelBinding\ModelBinderFactoryTest.cs (2)
362Assert.Equal(expectedInfo.BinderType, context.BindingInfo.BinderType);