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

NAME

Mojo::Cookie - HTTP 1.1 cookie base class

SYNOPSIS

  use Mojo::Base 'Mojo::Cookie';

DESCRIPTION

Mojo::Cookie is an abstract base class for HTTP 1.1 cookies.

ATTRIBUTES

Mojo::Cookie implements the following attributes.

name

  my $name = $cookie->name;
  $cookie  = $cookie->name('foo');

Cookie name.

path

  my $path = $cookie->path;
  $cookie  = $cookie->path('/test');

Cookie path.

value

  my $value = $cookie->value;
  $cookie   = $cookie->value('/test');

Cookie value.

version

  my $version = $cookie->version;
  $cookie     = $cookie->version(1);

Cookie version.

METHODS

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

to_string

  my $string = $cookie->to_string;

Render cookie.

SEE ALSO

Mojolicious, Mojolicious::Guides, http://mojolicio.us.