WebScraper.UnScrape Method (String, Boolean)

IronWebScraper

WebScraperUnScrape Method (String, Boolean)

Retrieves IronWebScraper.ScrapedData objects which were saved using the WebScraper.Scrape method.

Namespace:  IronWebScraper
Assembly:  IronWebScraper (in IronWebScraper.dll) Version: 4.0.4.25470 (4.0.4.3)
Syntax
public IEnumerable<ScrapedData> UnScrape(
	string fileName = null,
	bool IgnoreErrors = false
)
Public Function UnScrape ( 
	Optional fileName As String = Nothing,
	Optional IgnoreErrors As Boolean = false
) As IEnumerable(Of ScrapedData)

Parameters

fileName (Optional)
Type: SystemString
Path of the saved data file.
IgnoreErrors (Optional)
Type: SystemBoolean
if set to true any objects that cant be cast to the specified Type T will be ignored..

Return Value

Type: IEnumerableScrapedData
See Also