Files
linux-packaging-mono/external/aspnetwebstack/src/System.Web.Mvc/AsyncTimeoutAttribute.cs
Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

44 lines
1.5 KiB
C#

// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System.Diagnostics.CodeAnalysis;
using System.Web.Mvc.Async;
namespace System.Web.Mvc
{
[SuppressMessage("Microsoft.Performance", "CA1813:AvoidUnsealedAttributes", Justification = "Unsealed so that subclassed types can set properties in the default constructor.")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = true, AllowMultiple = false)]
public class AsyncTimeoutAttribute : ActionFilterAttribute
{
// duration is specified in milliseconds
public AsyncTimeoutAttribute(int duration)
{
if (duration < -1)
{
throw Error.AsyncCommon_InvalidTimeout("duration");
}
Duration = duration;
}
public int Duration { get; private set; }
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
if (filterContext == null)
{
throw new ArgumentNullException("filterContext");
}
IAsyncManagerContainer container = filterContext.Controller as IAsyncManagerContainer;
if (container == null)
{
throw Error.AsyncCommon_ControllerMustImplementIAsyncManagerContainer(filterContext.Controller.GetType());
}
container.AsyncManager.Timeout = Duration;
base.OnActionExecuting(filterContext);
}
}
}