NAME
Catalyst::Response - Catalyst Response Class
SYNOPSIS
DESCRIPTION
The Catalyst Response.
METHODS
cookies
Returns a hashref containing the cookies.
$c->response->cookies->{foo} = { value => '123' };
headers
Returns a HTTP::Headers object containing the headers.
$c->response->headers->header( 'X-Catalyst' => $Catalyst::VERSION );
output
Contains the final output.
$c->response->output('Catalyst rockz!');
redirect
Contains a location to redirect to.
$c->response->redirect('http://slashdot.org');
status
Contains the HTTP status.
$c->response->status(404);
AUTHOR
Sebastian Riedel, sri@cpan.org
COPYRIGHT
This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.