C# Class Phun.Templating.PhunResponse

Phun response.
Inheritance: IResponse
Afficher le fichier Open project: noogen/phuncms

Méthodes publiques

Méthode Description
PhunResponse ( System.Web.HttpContextBase context ) : System.Web

Initializes a new instance of the PhunResponse class.

addHeader ( string name, string value ) : void

Adds the header.

clearContent ( ) : void

Clears the content.

clearHeaders ( ) : void

Clears the header.

end ( ) : void

Ends this instance.

flush ( ) : void

Flushes this instance.

redirect ( string url ) : void

Redirects the specified URL.

write ( string chars ) : void

Writes the specified chars.

Method Details

PhunResponse() public méthode

Initializes a new instance of the PhunResponse class.
public PhunResponse ( System.Web.HttpContextBase context ) : System.Web
context System.Web.HttpContextBase The context.
Résultat System.Web

addHeader() public méthode

Adds the header.
public addHeader ( string name, string value ) : void
name string The name.
value string The value.
Résultat void

clearContent() public méthode

Clears the content.
public clearContent ( ) : void
Résultat void

clearHeaders() public méthode

Clears the header.
public clearHeaders ( ) : void
Résultat void

end() public méthode

Ends this instance.
public end ( ) : void
Résultat void

flush() public méthode

Flushes this instance.
public flush ( ) : void
Résultat void

redirect() public méthode

Redirects the specified URL.
public redirect ( string url ) : void
url string The URL.
Résultat void

write() public méthode

Writes the specified chars.
public write ( string chars ) : void
chars string The chars.
Résultat void