4 instantiations of DecimalModelBinder
Microsoft.AspNetCore.Mvc.Core (1)
ModelBinding\Binders\FloatingPointTypeModelBinderProvider.cs (1)
31return new DecimalModelBinder(SupportedStyles, loggerFactory);
Microsoft.AspNetCore.Mvc.Core.Test (1)
ModelBinding\Binders\DecimalModelBinderTest.cs (1)
21return new DecimalModelBinder(numberStyles, NullLoggerFactory.Instance);
Microsoft.AspNetCore.Mvc.IntegrationTests (2)
ComplexRecordIntegrationTest.cs (1)
3030_innerBinder = new DecimalModelBinder(_supportedStyles, loggerFactory);
ComplexTypeIntegrationTestBase.cs (1)
3245_innerBinder = new DecimalModelBinder(_supportedStyles, loggerFactory);
5 references to DecimalModelBinder
Microsoft.AspNetCore.Mvc.Core (2)
ModelBinding\Binders\DecimalModelBinder.cs (2)
22/// Initializes a new instance of <see cref="DecimalModelBinder"/>. 31_logger = loggerFactory.CreateLogger(typeof(DecimalModelBinder));
Microsoft.AspNetCore.Mvc.Core.Test (1)
ModelBinding\Binders\FloatingPointTypeModelBinderProviderTest.cs (1)
61Assert.IsType<DecimalModelBinder>(result);
Microsoft.AspNetCore.Mvc.IntegrationTests (2)
ComplexRecordIntegrationTest.cs (1)
3026private readonly DecimalModelBinder _innerBinder;
ComplexTypeIntegrationTestBase.cs (1)
3241private readonly DecimalModelBinder _innerBinder;