C# Class Simplify.Web.Responses.Redirect

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

Méthodes publiques

Méthode 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 méthode

Processes this response
public Process ( ) : ControllerResponseResult
Résultat ControllerResponseResult

Redirect() public méthode

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.
Résultat Simplify.Web.Modules

Redirect() public méthode

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