IronWebScraper - The C# Web Scraping Library
WebScraperPostRequest Method (Uri, ActionResponse, DictionaryString, String, HttpIdentity, MetaData) |
Request adds a new request to the scrape-job queue using the POST http method.
Namespace: IronWebScraper
Assembly: IronWebScraper (in IronWebScraper.dll) Version: 4.0.4.25470 (4.0.4.3)

public virtual void PostRequest( Uri url, Action<Response> parse, Dictionary<string, string> postVaraibles, HttpIdentity identity = null, MetaData metaData = null )
Public Overridable Sub PostRequest ( url As Uri, parse As Action(Of Response), postVaraibles As Dictionary(Of String, String), Optional identity As HttpIdentity = Nothing, Optional metaData As MetaData = Nothing )
Parameters
- url
- Type: SystemUri
The absolute url 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) - postVaraibles
- Type: System.Collections.GenericDictionaryString, String
The POST variables as a dictionary of key-value pairs. - identity (Optional)
- Type: IronWebScraperHttpIdentity
An optional HttpIdentity to send the Request. If null, the ChooseIdentityForRequest method will be used to find a suitable identity. - metaData (Optional)
- Type: IronWebScraperMetaData
Additional information of any Type can be sent with the request and then re-read when the response is parsed .
