|
NAMEHTTP::WebTest::Cookies - Cookie storage and managementSYNOPSISuse 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); DESCRIPTIONSubclass of HTTP::Cookies which enables optional transmission and receipt of cookies.METHODSaccept_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.Returns 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.Returns 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.add_cookie_header (...)Overloaded method. If transmission of cookies is enabled, passes all arguments to "SUPER::add_cookie_header". Otherwise, does nothing.COPYRIGHTCopyright (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. SEE ALSOHTTP::WebTestHTTP::WebTest::API HTTP::Cookies
Visit the GSP FreeBSD Man Page Interface. |