| Bing-Search documentation | Contained in the Bing-Search distribution. |
Bing::Search::Source::Web - Search the web with Bing
Market, Version, Latitude, Longitude, Options, and setOptionsSee Bing::Search for documentation on these common attributes.
Web_Count and Web_OffsetThe range for Web_Count is 1 to 50.
The maximum value of Web_Count and Web_Offset must not exceed 1,000.
Web_OptionsContains an arrayref for options available. See http://msdn.microsoft.com/en-us/library/dd250969.aspx
for details on what each option does. You should use setWeb_Option to adjust
this.
set_WebOptionSupply the name of an option, optionally prepended with a + to add it.
Prepend a - to remove it.
Web_FileTypeSelect only certain file types. See http://msdn.microsoft.com/en-us/library/dd250876.aspx for the list of valid types.
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::Web; use Moose; extends 'Bing::Search::Source'; with 'Bing::Search::Role::WebRequest::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::WebRequest::Offset Bing::Search::Role::WebRequest::Options Bing::Search::Role::WebRequest::FileType ); sub _build_source_name { 'Web' } __PACKAGE__->meta->make_immutable;