The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Archive::Har::Entry::Request::QueryString - Represents a single name/value pair from the query string for a request inside the HTTP Archive

VERSION

Version '0.11'

SYNOPSIS

    use Archive::Har();

    my $http_archive_string = '"log": { "version": "1.1", .... ';
    my $har = Archive::Har->new();
    $har->string($http_archive_string);
    foreach my $entry ($har->entries()) {
        my $request = $entry->request();
        foreach my $element ($request->queryString()) {
                print "Name: " . $element->name() . "\n";
                print "Value: " . $element->value() . "\n";
                print "Comment: " . $element->comment() . "\n";
        }
    }

SUBROUTINES/METHODS

new

returns a new QueryString object

name

returns the name of the element in the Query String

value

returns the value of the element in the Query String

comment

returns the comment about element in the Query String