View Source
Interface IControllerActionSearcher
Assembly: Umbraco.Web.Website.dll
Syntax
public interface IControllerActionSearcher
Methods
View Source
Find<T>(HttpContext, String, String)
Declaration
ControllerActionDescriptor Find<T>(HttpContext httpContext, string controller, string action)
Parameters
| Type |
Name |
Description |
| Microsoft.AspNetCore.Http.HttpContext |
httpContext |
|
| System.String |
controller |
|
| System.String |
action |
|
Returns
| Type |
Description |
| Microsoft.AspNetCore.Mvc.Controllers.ControllerActionDescriptor |
|
Type Parameters
View Source
Find<T>(HttpContext, String, String, String)
Declaration
virtual ControllerActionDescriptor Find<T>(HttpContext httpContext, string controller, string action, string area)
Parameters
| Type |
Name |
Description |
| Microsoft.AspNetCore.Http.HttpContext |
httpContext |
|
| System.String |
controller |
|
| System.String |
action |
|
| System.String |
area |
|
Returns
| Type |
Description |
| Microsoft.AspNetCore.Mvc.Controllers.ControllerActionDescriptor |
|
Type Parameters