WebScraper.UnScrape(T) Method (Boolean)

IronWebScraper

WebScraperUnScrapeT Method (Boolean)

Retrieves native C# objects which were saved using the WebScraper.Scrape method in the JsonLines format.

Namespace:  IronWebScraper
Assembly:  IronWebScraper (in IronWebScraper.dll) Version: 4.0.4.25470 (4.0.4.3)
Syntax
public IEnumerable<T> UnScrape<T>(
	bool IgnoreErrors
)
Public Function UnScrape(Of T) ( 
	IgnoreErrors As Boolean
) As IEnumerable(Of T)

Parameters

IgnoreErrors
Type: SystemBoolean
if set to true any objects that cant be cast to the specified Type T will be ignored..

Type Parameters

T
The Type of object to be returned. Giving no value will return an IEnumberable of IronWebScraper.ScrapedData

Return Value

Type: IEnumerableT
See Also