| Bing-Search documentation | Contained in the Bing-Search distribution. |
Bing::Search::Source::MobileWeb - Source for MobileWeb documents
Market, Version, Latitude, Longitude, Options, and setOptionsSee Bing::Search for documentation of this common attributes.
MobileWeb_Count, MobileWeb_OffsetThe number of documents to return, and the offset.
setMobileWeb_Option and MobileWeb_OptionsUse 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
Dave Houston, dhouston@cpan.org, 2010
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;