共用方式為


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

物件,包含開始非同步作業之方法的相關資訊 (方法的名稱以「非同步」結尾)。

completedMethodInfo
MethodInfo

含有完成方法相關資訊的物件 (方法的名稱以「已完成」結尾)。

actionName
String

動作的名稱。

controllerDescriptor
ControllerDescriptor

控制器描述元。

適用於