Bing::Search::Result::MobileWeb - Get mobile web search resulsts


Bing-Search documentation Contained in the Bing-Search distribution.

Index


Code Index:

NAME

Top

Bing::Search::Result::MobileWeb - Get mobile web search resulsts

METHODS

Top

DateTime

Returns a DateTime object representing the date and time of the last crawl.

Description

A string containing a portion of the HTML from the page.

DisplayUrl

A URI object containing the URL, possibly modified for display, for the page.

Title

The contents of the <title> tag.

Url

A URI object containing the unaltered URL.

AUTHOR

Top

Dave Houston, dhouston@cpan.org, 2010

LICENSE

Top

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


Bing-Search documentation Contained in the Bing-Search distribution.

package Bing::Search::Result::MobileWeb;
use Moose;

extends 'Bing::Search::Result';

with 'Bing::Search::Role::Types::DateType';
with 'Bing::Search::Role::Types::UrlType';

with 'Bing::Search::Role::Result::DateTime';
with 'Bing::Search::Role::Result::Description';
with 'Bing::Search::Role::Result::DisplayUrl';
with 'Bing::Search::Role::Result::Title';
with 'Bing::Search::Role::Result::Url';

__PACKAGE__->meta->make_immutable;