|
NAMEHTTP::Headers::ActionPack::LinkHeader - A Link VERSIONversion 0.09 SYNOPSIS use HTTP::Headers::ActionPack::LinkHeader;
# build from string
my $link = HTTP::Headers::ActionPack::LinkHeader->new_from_string(
'<http://example.com/TheBook/chapter2>;rel="previous";title="previous chapter"'
);
# normal constructor
my $link = HTTP::Headers::ActionPack::LinkHeader->new(
'<http://example.com/TheBook/chapter2>' => (
rel => "previous",
title => "previous chapter"
)
);
# normal constructor, and <> around link are optional
my $link = HTTP::Headers::ActionPack::LinkHeader->new(
'http://example.com/TheBook/chapter2' => (
rel => "previous",
title => "previous chapter"
)
);
DESCRIPTIONThis is an object which represents an HTTP Link header. It is most often used as a member of a HTTP::Headers::ActionPack::LinkList object. METHODS
AUTHORStevan Little <stevan.little@iinteractive.com> CONTRIBUTORS
COPYRIGHT AND LICENSEThis software is copyright (c) 2012 by Infinity Interactive, Inc.. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|