/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Http/Routing/test/UnitTests/TestConstants.cs
16 строк
534 B
Arvin Kahbazi
Add short circuit in routing (#46713)
18 мар 2023, 02:27
Не верифицирован
18 мар 2023, 02:27
c52fd93
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.AspNetCore.Http; namespace Microsoft.AspNetCore.Routing; public static class TestConstants { internal static readonly RequestDelegate EmptyRequestDelegate = (context) => Task.CompletedTask; internal static readonly RequestDelegate ShortCircuitRequestDelegate = (context) => { context.Items["ShortCircuit"] = true; return Task.CompletedTask; }; }