forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpRouteExceptionRouteHandler.cs
More file actions
31 lines (26 loc) · 1.03 KB
/
HttpRouteExceptionRouteHandler.cs
File metadata and controls
31 lines (26 loc) · 1.03 KB
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
// 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.Diagnostics.Contracts;
using System.Runtime.ExceptionServices;
using System.Web.Routing;
namespace System.Web.Http.WebHost.Routing
{
/// <summary>Represents a route handler that asynchronously handles an unhandled exception from routing.</summary>
internal class HttpRouteExceptionRouteHandler : IRouteHandler
{
private readonly ExceptionDispatchInfo _exceptionInfo;
public HttpRouteExceptionRouteHandler(ExceptionDispatchInfo exceptionInfo)
{
Contract.Assert(exceptionInfo != null);
_exceptionInfo = exceptionInfo;
}
internal ExceptionDispatchInfo ExceptionInfo
{
get { return _exceptionInfo; }
}
public IHttpHandler GetHttpHandler(RequestContext requestContext)
{
return new HttpRouteExceptionHandler(_exceptionInfo);
}
}
}