IronWebScraper - The C# Web Scraping Library
Response Methods |
The Response type exposes the following members.

Name | Description | |
---|---|---|
![]() | Css |
Uses CSS selectors to find all matching nodes within the Response Document.
This works in the same way as $('.ClassName') in jQuery or querySelectorAll() in JavaScript.
|
![]() | CssExists |
Uses CSS selectors to find if there are any matching nodes within the Response Document.
This works in the same way as $('.ClassName').length > 0 in jQuery or querySelectorAll().length >0 in JavaScript.
|
![]() | Equals | (Inherited from Object.) |
![]() | GetElementById |
Synonym of JavaScript's getElementById function. Searches inside the response as an HTML or XML Document by ID attribute.
|
![]() | GetElementsByTagName |
Synonym of JavaScript's getElementById function. Searches inside the response as an HTML or XML Document by tag-name such as "a" or "img".
|
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | QuerySelector |
Synonym of JavaScript's querySelector function. Searches inside the Response document as an HTML or XML Document using CSS selectors.
|
![]() | QuerySelectorAll |
Synonym of JavaScript's querySelectorAll function. Searches inside the response document as an HTML or XML Document using CSS selectors.
|
![]() | ToAbsoluteUrl(IEnumerableString) |
Makes any relative url strings absolute relative to this Response Document.
|
![]() | ToAbsoluteUrl(String) |
Makes a relative url strings absolute relative to this Response Document.
|
![]() | ToString | (Inherited from Object.) |
![]() | XPath |
Searches inside the response as an HTML / XML Document using an XPath expression.
|
