GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Dancer2::Core::Response(3) User Contributed Perl Documentation Dancer2::Core::Response(3)

Dancer2::Core::Response - Response object for Dancer2

version 0.400000

Flag to tell if the content has already been encoded.

Flag to tell whether or not the response should continue to be processed.

The HTTP status for the response.

The content for the response, stored as a string. If a reference is passed, the response will try coerce it to a string via double quote interpolation.

Default mime type to use for the response Content-Type header if nothing was specified

The attribute that store the headers in a HTTP::Headers::Fast object.

That attribute coerces from ArrayRef and defaults to an empty HTTP::Headers::Fast instance.

Set has_passed to true.

Returns the optional serializer object used to deserialize request parameters

Shortcut to halt the current response by setting the is_halted flag.

Encodes the stored content according to the stored content_type. If the content_type is a text format "^text", then no encoding will take place.

Internally, it uses the is_encoded flag to make sure that content is not encoded twice.

If it encodes the content, then it will return the encoded content. In all other cases it returns "false".

Creates a new response object from a Plack::Response object.

Creates a new response object from a PSGI arrayref.

Converts the response object to a PSGI array.

A little sugar for setting or accessing the content_type of the response, via the headers.

Sets a header in this response to give a redirect to $destination, and sets the status to $status. If $status is omitted, or false, then it defaults to a status of 302.

    $response->error( message => "oops" );

Creates a Dancer2::Core::Error object with the given @args and throw() it against the response object. Returns the error object.

    $response->serialize( $content );

Serialize and return $content with the response's serializer. set content-type accordingly.

Return the value of the given header, if present. If the header has multiple values, returns the list of values if called in list context, the first one if in scalar context.

Add the header no matter if it already exists or not.

    $self->push_header( 'X-Wing' => '1' );

It can also be called with multiple values to add many times the same header with different values:

    $self->push_header( 'X-Wing' => 1, 2, 3 );

Convert the $headers to a PSGI ArrayRef.

If no $headers are provided, it will use the current response headers.

Dancer Core Developers

This software is copyright (c) 2022 by Alexis Sukrieh.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2022-03-14 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.