Method | Description | |
---|---|---|
Error ( |
Creates an ErrorActionResult that specifies the error that occurred in completing the action.
|
|
Redirect ( |
Creates a RedirectActionResult that results in a redirect to the specified controller and action along with any specified parameters.
|
|
Redirect ( string actionName ) : |
Creates a RedirectActionResult that results in a redirect to the specified action.
|
|
View ( string viewName ) : |
Creates a ViewActionResult that results in the specified view being created.
|
Method | Description | |
---|---|---|
IController ( IAsyncResult asyncResult ) : |
||
IController ( |
||
OnActionCompleted ( object sender, |
protected Error ( |
||
error | The error that occurred. | |
return |
protected Redirect ( |
||
controllerType | The controller to redirect to. | |
actionName | string | The name of the action on the specified controller to redirect to. |
return |
protected Redirect ( string actionName ) : |
||
actionName | string | The name of the action on this controller to redirect to. |
return |
protected View ( string viewName ) : |
||
viewName | string | The name of the view to create. |
return |