// 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; namespace Microsoft.AspNet.Http { /// /// A function that can process an HTTP request. /// /// The for the request. /// A task that represents the completion of request processing. public delegate Task RequestDelegate(HttpContext context); }