/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Mvc/test/WebSites/BasicWebSite/StartupWithCustomValueProvider.cs
27 строк
687 B
campersau
Fix CollectionModelBinder BindSimpleCollection null value handling (#42278)
19 июл 2022, 21:32
Не верифицирован
19 июл 2022, 21:32
c565063
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using BasicWebSite.ValueProviders; namespace BasicWebSite; public class StartupWithCustomValueProvider { public void ConfigureServices(IServiceCollection services) { services .AddMvc(o => { o.ValueProviderFactories.Add(new CustomValueProviderFactory()); }); } public void Configure(IApplicationBuilder app) { app.UseDeveloperExceptionPage(); app.UseRouting(); app.UseEndpoints((endpoints) => endpoints.MapDefaultControllerRoute()); } }