次の方法で共有


ReflectedAsyncActionDescriptor コンストラクター

定義

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

public ReflectedAsyncActionDescriptor(System.Reflection.MethodInfo asyncMethodInfo, System.Reflection.MethodInfo completedMethodInfo, string actionName, System.Web.Mvc.ControllerDescriptor controllerDescriptor);
new System.Web.Mvc.Async.ReflectedAsyncActionDescriptor : System.Reflection.MethodInfo * System.Reflection.MethodInfo * string * System.Web.Mvc.ControllerDescriptor -> System.Web.Mvc.Async.ReflectedAsyncActionDescriptor
Public Sub New (asyncMethodInfo As MethodInfo, completedMethodInfo As MethodInfo, actionName As String, controllerDescriptor As ControllerDescriptor)

パラメーター

asyncMethodInfo
MethodInfo

非同期操作を開始するメソッド (名前の末尾に "Asynch" が付いているメソッド) に関する情報を格納しているオブジェクト。

completedMethodInfo
MethodInfo

完了メソッド (名前の末尾に "Completed" が付いているメソッド) に関する情報を格納しているオブジェクト。

actionName
String

アクションの名前。

controllerDescriptor
ControllerDescriptor

コントローラー記述子。

適用対象