WebScraper.Scrape Method

IronWebScraper

WebScraperScrape Method

Appends any scraped data to a file in the JsonLines format. (1 json object per line). Will save any .Net object of any kind. This method is typically used with IronWebScraper.ScrapedData or developer defined classes for scraped data items. The default filename will follow the pattern "NameSpace.TypeName.jsonl". E.g: IronWebScraper.ScrapedData.jsonl

Namespace:  IronWebScraper
Assembly:  IronWebScraper (in IronWebScraper.dll) Version: 4.0.4.25470 (4.0.4.3)
Syntax
public void Scrape(
	Object Item,
	string fileName = null
)
Public Sub Scrape ( 
	Item As Object,
	Optional fileName As String = Nothing
)

Parameters

Item
Type: SystemObject
fileName (Optional)
Type: SystemString
See Also