WebScraper.Request Method (IEnumerable(String), Action(Response))

IronWebScraper

WebScraperRequest Method (IEnumerableString, ActionResponse)

A key method called from with the Init and Parse Methods. Request adds new requests to the scrape-job queue, and decides which method (e.g. Parse) will be used to parse the Response object.

Namespace:  IronWebScraper
Assembly:  IronWebScraper (in IronWebScraper.dll) Version: 4.0.4.25470 (4.0.4.3)
Syntax
public virtual void Request(
	IEnumerable<string> urls,
	Action<Response> parse
)
Public Overridable Sub Request ( 
	urls As IEnumerable(Of String),
	parse As Action(Of Response)
)

Parameters

urls
Type: System.Collections.GenericIEnumerableString
The Absolute url or urls to be fetched. Developers may use Response.ToAbsoluteUrl to resolve all relative links to Absolute Url strings.
parse
Type: SystemActionResponse
The method to be used to parse the Response (often this is WebScraper.Parse)
See Also