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 |
HttpContext |
httpContext |
|
System.String |
controller |
|
System.String |
action |
|
Returns
Type |
Description |
System.Nullable<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 |
HttpContext |
httpContext |
|
System.String |
controller |
|
System.String |
action |
|
System.String |
area |
|
Returns
Type |
Description |
System.Nullable<ControllerActionDescriptor> |
|
Type Parameters