The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Mojo::Cookie::Request - HTTP 1.1 Request Cookie Container

SYNOPSIS

    use Mojo::Cookie::Request;

    my $cookie = Mojo::Cookie::Request->new;
    $cookie->name('foo');
    $cookie->value('bar');

    print "$cookie";

DESCRIPTION

Mojo::Cookie::Request is a container for HTTP 1.1 request cookies.

ATTRIBUTES

Mojo::Cookie::Request inherits all attributes from Mojo::Cookie.

METHODS

Mojo::Cookie::Request inherits all methods from Mojo::Cookie and implements the following new ones.

parse

    my @cookies = $cookie->parse('$Version=1; f=b; $Path=/');

prefix

    my $prefix = $cookie->prefix;

to_string

    my $string = $cookie->to_string;

to_string_with_prefix

    my $string = $cookie->to_string_with_prefix;

SEE ALSO

Mojolicious, Mojolicious::Book, http://mojolicious.org.