aspnetcore/test/Microsoft.AspNetCore.Routin.../TestConstants.cs

14 lines
433 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
namespace Microsoft.AspNetCore.Routing
{
public static class TestConstants
{
internal static readonly RequestDelegate EmptyRequestDelegate = (context) => Task.CompletedTask;
}
}