IActionInvokerFactory.CreateInvoker(ActionContext) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates an IActionInvoker for the current request associated with
actionContext
.
public:
Microsoft::AspNetCore::Mvc::Abstractions::IActionInvoker ^ CreateInvoker(Microsoft::AspNetCore::Mvc::ActionContext ^ actionContext);
public Microsoft.AspNetCore.Mvc.Abstractions.IActionInvoker CreateInvoker (Microsoft.AspNetCore.Mvc.ActionContext actionContext);
public Microsoft.AspNetCore.Mvc.Abstractions.IActionInvoker? CreateInvoker (Microsoft.AspNetCore.Mvc.ActionContext actionContext);
abstract member CreateInvoker : Microsoft.AspNetCore.Mvc.ActionContext -> Microsoft.AspNetCore.Mvc.Abstractions.IActionInvoker
Public Function CreateInvoker (actionContext As ActionContext) As IActionInvoker
Parameters
- actionContext
- ActionContext
The ActionContext associated with the current request.
Returns
An IActionInvoker or null
.