MvcOptions.EnableActionInvokers Property

Definition

Gets or sets the flag that determines if MVC should use action invoker extensibility. This will allow custom IActionInvokerFactory and IActionInvokerProvider execute during the request pipeline.

public bool EnableActionInvokers { get; set; }
member this.EnableActionInvokers : bool with get, set
Public Property EnableActionInvokers As Boolean

Property Value

Defaults to false indicating that action invokers are unused by default.

Remarks

This only applies when EnableEndpointRouting is true.

Applies to