blob: eeaccc9711d85a0ac12db5f320247c86d7f8acd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// 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 class ApiControllerActionInvoker : IHttpActionInvoker
{
public virtual Task<HttpResponseMessage> InvokeActionAsync(HttpActionContext actionContext, CancellationToken cancellationToken)
{
if (actionContext == null)
{
throw Error.ArgumentNull("actionContext");
}
HttpActionDescriptor actionDescriptor = actionContext.ActionDescriptor;
HttpControllerContext controllerContext = actionContext.ControllerContext;
return TaskHelpers.RunSynchronously(() =>
{
return actionDescriptor.ExecuteAsync(controllerContext, actionContext.ActionArguments)
.Then(value => actionDescriptor.ResultConverter.Convert(controllerContext, value));
}, cancellationToken)
.Catch<HttpResponseMessage>(info =>
{
// Propagate anything which isn't HttpResponseException
HttpResponseException httpResponseException = info.Exception as HttpResponseException;
if (httpResponseException == null)
{
return info.Throw();
}
HttpResponseMessage response = httpResponseException.Response;
response.EnsureResponseHasRequest(actionContext.Request);
return info.Handled(response);
}, cancellationToken);
}
}
}
|