HTTP-WebTest-2.04 > HTTP::WebTest::Cookies
HTTP-WebTest-2.04

名前

HTTP::WebTest::Cookies - Cookie storage and management

HTTP::WebTest::Cookies - Cookie の格納及び管理

概要

    use HTTP::WebTest::Cookies;

    $cookie_jar = HTTP::WebTest::Cookies->new;

    $cookie_jar->accept_cookies($bool);
    $cookie_jar->send_cookies($bool);

    $cookie_jar->add_cookie_header($request);
    $cookie_jar->extract_cookies($response);

説明

Subclass of HTTP::Cookies which enables optional transmission and receipt of cookies.

クッキーの転送や受信を追加可能にした HTTP::Cookies の サブクラス.

メソッド

accept_cookies($optional_accept_cookies)

Returns the current setting of accept_cookies. If optional boolean parameter $optional_accept_cookies is passed, enables or disables receipt of cookies.

現在の accept_cookies の設定を返します. 任意の真偽値パラメータ $optional_accept_cookies が渡されると クッキーの受信を許可もしくは不許可にします.

復帰値

True if receipt of cookies is enabled; false otherwise.

クッキーの受信が許可されていれば真, そうでなければ偽.

send_cookies($optional_send_cookies)

Returns the current setting of send_cookies. If optional boolean parameter $optional_send_cookies is passed, enables or disables transmission of cookies.

現在の send_cookies の設定を返します. 任意の真偽値パラメータ $optional_send_cookies が渡されると クッキーの転送を許可もしくは不許可にします.

復帰値

True if transmission of cookies is enabled; false otherwise.

クッキーの転送が許可されていれば真, そうでなければ偽.

extract_cookies (...)

Overloaded method. If receipt of cookies is enabled, passes all arguments to SUPER::extract_cookies. Otherwise, does nothing.

オーバーロードしているメソッド. クッキーの受信が許可されていれば引数を SUPER::extract_cookies に 渡します. そうでなければ何もしません.

Overloaded method. If transmission of cookies is enabled, passes all arguments to SUPER::add_cookie_header. Otherwise, does nothing.

オーバーロードしているメソッド. クッキーの転送が許可されていれば引数を SUPER::add_cookie_header に 渡します. そうでなければ何もしません.

コピーライト

Copyright (c) 2000-2001 Richard Anderson. All rights reserved.

Copyright (c) 2001-2003 Ilya Martynov. All rights reserved.

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

このプログラムはフリーソフトウェアです. このプログラムは Perl 自身と同じ条件下で再配布・改変可能です.

SEE ALSO

HTTP::WebTest

HTTP::WebTest::API

HTTP::Cookies