/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Http/Http.Results/test/EmptyServiceProvider.cs
11 строк
394 B
Damian Edwards
RequestDelegateFactory context classes ApplicationServices property (#41952)
06 июн 2022, 21:01
Не верифицирован
06 июн 2022, 21:01
f73497c
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Http.HttpResults; internal sealed class EmptyServiceProvider : IServiceProvider { public static IServiceProvider Instance { get; } = new EmptyServiceProvider(); public object GetService(Type serviceType) => null; }