C# Class Simplify.Web.Responses.Redirect

Provides controller redirect response (redirects the client to specified URL.)
Inheritance: ControllerResponse
Exibir arquivo Open project: i4004/Simplify.Web

Public Methods

Method Description
Process ( ) : ControllerResponseResult

Processes this response

Redirect ( RedirectionType redirectionType = RedirectionType.DefaultPage, string bookmarkName = null ) : Simplify.Web.Modules

Redirects the client by specifying redirection type.

Redirect ( string url ) : Simplify.Web.Modules

Redirects the client to specified URL.

Method Details

Process() public method

Processes this response
public Process ( ) : ControllerResponseResult
return ControllerResponseResult

Redirect() public method

Redirects the client by specifying redirection type.
public Redirect ( RedirectionType redirectionType = RedirectionType.DefaultPage, string bookmarkName = null ) : Simplify.Web.Modules
redirectionType RedirectionType Type of the navigation.
bookmarkName string Name of the bookmark.
return Simplify.Web.Modules

Redirect() public method

Redirects the client to specified URL.
public Redirect ( string url ) : Simplify.Web.Modules
url string The URL.
return Simplify.Web.Modules