Bing::Search::Source::MobileWeb - Source for MobileWeb documents


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

Index


Code Index:

NAME

Top

Bing::Search::Source::MobileWeb - Source for MobileWeb documents

METHODS

Top

Market, Version, Latitude, Longitude, Options, and setOptions

See Bing::Search for documentation of this common attributes.

MobileWeb_Count, MobileWeb_Offset

The number of documents to return, and the offset.

setMobileWeb_Option and MobileWeb_Options

Use the setMobileWeb_Option method to set appropriate appropriate options. The two valid options are: DisableHostCollapsing and DisableQueryAlterations.

More information on what each of these does is available at http://msdn.microsoft.com/en-us/library/dd560917.aspx

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::Source::MobileWeb;
use Moose;
extends 'Bing::Search::Source';

with 'Bing::Search::Role::MobileWebRequest::Count';

with qw(
Bing::Search::Role::SearchRequest::Market
Bing::Search::Role::SearchRequest::Version
Bing::Search::Role::SearchRequest::Latitude
Bing::Search::Role::SearchRequest::Longitude
Bing::Search::Role::SearchRequest::Options
Bing::Search::Role::MobileWebRequest::Offset
Bing::Search::Role::MobileWebRequest::Options
);

sub _build_source_name { 'MobileWeb' }

__PACKAGE__->meta->make_immutable;