The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Catalyst::Response - Catalyst Response Class

SYNOPSIS

See Catalyst::Application.

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.