Mojo::Cookie.3pm

Langue: en

Version: 2010-08-12 (fedora - 01/12/10)

Section: 3 (Bibliothèques de fonctions)

NAME

Mojo::Cookie - HTTP 1.1 Cookie Base Class

SYNOPSIS

     use base 'Mojo::Cookie';
 
 

DESCRIPTION

Mojo::Cookie is an abstract base class for HTTP 1.1 cookies as described in RFC 2965.

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://mojolicious.org>.