blob: a8711e013d7ee42422a39f126d74477b4b6c13db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
namespace System.Web.Http.Controllers
{
public interface IHttpController
{
Task<HttpResponseMessage> ExecuteAsync(HttpControllerContext controllerContext, CancellationToken cancellationToken);
}
}
|