WebScraper.UnScrape(T) Method (String, Boolean)

IronWebScraper

WebScraperUnScrapeT Method (String, 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>(
	string fileName = null,
	bool IgnoreErrors = false
)
Public Function UnScrape(Of T) ( 
	Optional fileName As String = Nothing,
	Optional IgnoreErrors As Boolean = false
) As IEnumerable(Of T)

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..

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