Mojo::Cookie
НАЗВАНИЕ
Mojo::Cookie - HTTP 1.1 Cookie Base Class
КРАТКИЙ ОБЗОР
use Mojo::Base 'Mojo::Cookie';
ОПИСАНИЕ
Mojo::Cookie is an abstract base class for HTTP 1.1 cookies as described in RFC 2965.
АТРИБУТЫ
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.
МЕТОДЫ
Mojo::Cookie inherits all methods from Mojo::Base and implements the following new ones.
to_string
my $string = $cookie->to_string;
Render cookie.