Info
Version: | 1.0.3 |
Author(s): | SvenEV |
Last Update: | Wednesday, November 26, 2014 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://nuget.org/packages/DynamicHtml |
NuGet Url: | https://www.nuget.org/packages/DynamicHtml |
Install
Install-Package DynamicHtml
dotnet add package DynamicHtml
paket add DynamicHtml
DynamicHtml Download (Unzip the "nupkg" after downloading)
Dependencies
- HtmlAgilityPack-PCL(1.4.6.0)
Tags
Provides extension methods for HtmlAgilityPack's HtmlNode class.
Example: How to get the URLs of all images that are within a div with class "container":
var urls = document.AsDynamic().body.div("class", "container").img._url;.