AsyncTimeoutAttribute クラス

定義

非同期メソッドのタイムアウト値をミリ秒単位で設定するために使用する属性を表します。

[System.AttributeUsage(System.AttributeTargets.Class | System.AttributeTargets.Method, AllowMultiple=false, Inherited=true)]
public class AsyncTimeoutAttribute : System.Web.Mvc.ActionFilterAttribute
type AsyncTimeoutAttribute = class
    inherit ActionFilterAttribute
Public Class AsyncTimeoutAttribute
Inherits ActionFilterAttribute
継承
派生
属性

コンストラクター

AsyncTimeoutAttribute(Int32)

AsyncTimeoutAttribute クラスの新しいインスタンスを初期化します。

プロパティ

AllowMultiple

フィルター属性の複数のインスタンスを指定できるかどうかを示す値を取得または設定します。

(継承元 FilterAttribute)
Duration

タイムアウト期間をミリ秒単位で取得します。

Order

アクション フィルターの実行順序を取得または設定します。

(継承元 FilterAttribute)

メソッド

OnActionExecuted(ActionExecutedContext)

アクション メソッドの実行後に ASP.NET MVC フレームワークによって呼び出されます。

(継承元 ActionFilterAttribute)
OnActionExecuting(ActionExecutingContext)

非同期のアクション メソッドを実行する前に、ASP.NET によって呼び出されます。

OnResultExecuted(ResultExecutedContext)

アクション結果の実行後に ASP.NET MVC フレームワークによって呼び出されます。

(継承元 ActionFilterAttribute)
OnResultExecuting(ResultExecutingContext)

アクション結果の実行前に ASP.NET MVC フレームワークによって呼び出されます。

(継承元 ActionFilterAttribute)

適用対象