AngleSharp 1.0.4-alpha-311

logo

AngleSharp

CI GitHub Tag NuGet Count Issues Open Gitter Chat StackOverflow Questions CLA Assistant

AngleSharp is a .NET library that gives you the ability to parse angle bracket based hyper-texts like HTML, SVG, and MathML. XML without validation is also supported by the library. An important aspect of AngleSharp is that CSS can also be parsed. The included parser is built upon the official W3C specification. This produces a perfectly portable HTML5 DOM representation of the given source code and ensures compatibility with results in evergreen browsers. Also standard DOM features such as querySelector or querySelectorAll work for tree traversal.

:zapzap: Migrating from AngleSharp 0.9 to AngleSharp 0.10 or later (incl. 1.0)? Look at our migration documentation. :zapzap:

Key Features

  • Portable (using .NET Standard 2.0)
  • Standards conform (works exactly as evergreen browsers)
  • Great performance (outperforms similar parsers in most scenarios)
  • Extensible (extend with your own services)
  • Useful abstractions (type helpers, jQuery like construction)
  • Fully functional DOM (all the lists, iterators, and events you know)
  • Form submission (easily log in everywhere)
  • Navigation (a BrowsingContext is like a browser tab - control it from .NET!).
  • LINQ enhanced (use LINQ with DOM elements, naturally without wrappers)

The advantage over similar libraries like HtmlAgilityPack is that the exposed DOM is using the official W3C specified API, i.e., that even things like querySelectorAll are available in AngleSharp. Also the parser uses the HTML 5.1 specification, which defines error handling and element correction. The AngleSharp library focuses on standards compliance, interactivity, and extensibility. It is therefore giving web developers working with C# all possibilities as they know from using the DOM in any modern browser.

The performance of AngleSharp is quite close to the performance of browsers. Even very large pages can be processed within milliseconds. AngleSharp tries to minimize memory allocations and reuses elements internally to avoid unnecessary object creation.

Simple Demo

The simple example will use the website of Wikipedia for data retrieval.

var config = Configuration.Default.WithDefaultLoader();
var address = "https://en.wikipedia.org/wiki/List_of_The_Big_Bang_Theory_episodes";
var context = BrowsingContext.New(config);
var document = await context.OpenAsync(address);
var cellSelector = "tr.vevent td:nth-child(3)";
var cells = document.QuerySelectorAll(cellSelector);
var titles = cells.Select(m => m.TextContent);

Or the same with explicit types:

IConfiguration config = Configuration.Default.WithDefaultLoader();
string address = "https://en.wikipedia.org/wiki/List_of_The_Big_Bang_Theory_episodes";
IBrowsingContext context = BrowsingContext.New(config);
IDocument document = await context.OpenAsync(address);
string cellSelector = "tr.vevent td:nth-child(3)";
IHtmlCollection<IElement> cells = document.QuerySelectorAll(cellSelector);
IEnumerable<string> titles = cells.Select(m => m.TextContent);

In the example we see:

  • How to setup the configuration for supporting document loading
  • Asynchronously get the document in a new context using the configuration
  • Performing a query to get all cells with the content of interest
  • The whole DOM supports LINQ queries

Every collection in AngleSharp supports LINQ statements. AngleSharp also provides many useful extension methods for element collections that cannot be found in the official DOM.

Supported Platforms

AngleSharp has been created as a .NET Standard 2.0 compatible library. This includes, but is not limited to:

  • .NET Core (2.0 and later)
  • .NET Framework (4.6.1 and later)
  • Xamarin.Android (7.0 and 8.0)
  • Xamarin.iOS (10.0 and 10.14)
  • Xamarin.Mac (3.0 and 3.8)
  • Mono (4.6 and 5.4)
  • UWP (10.0 and 10.0.16299)
  • Unity (2018.1)

Documentation

The documentation of AngleSharp is located in the docs folder. More examples, best-practices, and general information can be found there. The documentation also contains a list of frequently asked questions.

More information is also available by following some of the hyper references mentioned in the Wiki. In-depth articles will be published on the CodeProject, with links being placed in the Wiki at GitHub.

Use-Cases

  • Parsing HTML (incl. fragments)
  • Parsing CSS (incl. selectors, declarations, ...)
  • Constructing HTML (e.g., view-engine)
  • Minifying CSS, HTML, ...
  • Querying document elements
  • Crawling information
  • Gathering statistics
  • Web automation
  • Tools with HTML / CSS / ... support
  • Connection to page analytics
  • HTML / DOM unit tests
  • Automated JavaScript interaction
  • Testing other concepts, e.g., script engines
  • ...

Vision

The project aims to bring a solid implementation of the W3C DOM for HTML, SVG, MathML, and CSS to the CLR - all written in C#. The idea is that you can basically do everything with the DOM in C# that you can do in JavaScript (plus, of course, more).

Most parts of the DOM are included, even though some may still miss their (fully specified / correct) implementation. The goal for v1.0 is to have all practically relevant parts implemented according to the official W3C specification (with useful extensions by the WHATWG).

The API is close to the DOM4 specification, however, the naming has been adjusted to apply with .NET conventions. Nevertheless, to make AngleSharp really useful for, e.g., a JavaScript engine, attributes have been placed on the corresponding interfaces (and methods, properties, ...) to indicate the status of the field in the official specification. This allows automatic generation of DOM objects with the official API.

This is a long-term project which will eventually result in a state of the art parser for the most important angle bracket based hyper-texts.

Our hope is to build a community around web parsing and libraries from this project. So far we had great contributions, but that goal was not fully achieved. Want to help? Get in touch with us!

Participating in the Project

If you know some feature that AngleSharp is currently missing, and you are willing to implement the feature, then your contribution is more than welcome! Also if you have a really cool idea - do not be shy, we'd like to hear it.

If you have an idea how to improve the API (or what is missing) then posts / messages are also welcome. For instance there have been ongoing discussions about some styles that have been used by AngleSharp (e.g., HTMLDocument or HtmlDocument) in the past. In the end AngleSharp stopped using HTMLDocument (at least visible outside of the library). Now AngleSharp uses names like IDocument, IHtmlElement and so on. This change would not have been possible without such fruitful discussions.

The project is always searching for additional contributors. Even if you do not have any code to contribute, but rather an idea for improvement, a bug report or a mistake in the documentation. These are the contributions that keep this project active.

Live discussions can take place in our Gitter chat, which supports using GitHub accounts.

More information is found in the contribution guidelines. All contributors can be found in the CONTRIBUTORS file.

This project has also adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community.

For more information see the .NET Foundation Code of Conduct.

Funding / Support

If you use AngleSharp frequently, but you do not have the time to support the project by active participation you may still be interested to ensure that the AngleSharp projects keeps the lights on.

Therefore we created a backing model via Bountysource. Any donation is welcome and much appreciated. We will mostly spend the money on dedicated development time to improve AngleSharp where it needs to be improved, plus invest in the web utility eco-system in .NET (e.g., in JavaScript engines, other parsers, or a renderer for AngleSharp to mention some outstanding projects).

Visit Bountysource for more details.

Development

AngleSharp is written in the most recent version of C# and thus requires Roslyn as a compiler. Using an IDE like Visual Studio 2019+ is recommended on Windows. Alternatively, VSCode (with OmniSharp or another suitable Language Server Protocol implementation) should be the tool of choice on other platforms.

The code tries to be as clean as possible. Notably the following rules are used:

  • Use braces for any conditional / loop body
  • Use the -Async suffixed methods when available
  • Use VIP ("Var If Possible") style (in C++ called AAA: Almost Always Auto) to place types on the right

More important, however, is the proper usage of tests. Any new feature should come with a set of tests to cover the functionality and prevent regression.

Changelog

A very detailed changelog exists. If you are just interested in major releases then have a look at the GitHub releases.

.NET Foundation

This project is supported by the .NET Foundation.

License

AngleSharp is released using the MIT license. For more information see the license file.

Showing the top 20 packages that depend on AngleSharp.

Packages Downloads
AngleSharp.Wrappers
A library of wrappers for AngleSharp. Allows you to replace a real AngleSharp DOM tree but still keep the queried/returned node references. Built for and used by https://github.com/bUnit-dev/bUnit.
49
AngleSharp.Wrappers
A library of wrappers for AngleSharp. Allows you to replace a real AngleSharp DOM tree but still keep the queried/returned node references. Built for and used by https://github.com/egil/razor-components-testing-library.
48
bunit.web
bUnit.web is the web specific parts of bUnit, that enables you to easily test and verify the output of Blazor (web) component.
48
bunit.web
bUnit.web is the web specific parts of bUnit, that enables you to easily test and verify the output of Blazor (web) component.
49
bunit.web
bUnit.web is the web specific parts of bUnit, that enables you to easily test and verify the output of Blazor (web) component.
50
bunit.web
bUnit.web is the web specific parts of bUnit, that enables you to easily test and verify the output of Blazor (web) component.
51
ZhonTai.Admin
中台Admin权限管理接口库
55
ZhonTai.Admin
中台Admin权限管理接口库
59
ZhonTai.Admin
中台Admin权限管理接口库
62
ZhonTai.Admin
中台Admin权限管理接口库
70
ZhonTai.Admin
中台Admin权限管理接口库
79
ZhonTai.Admin.Core
中台Admin权限管理核心库
48
ZhonTai.Admin.Core
中台Admin权限管理核心库
50
ZhonTai.Admin.Core
中台Admin权限管理核心库
51
ZhonTai.Admin.Core
中台Admin权限管理核心库
52
ZhonTai.Admin.Core
中台Admin权限管理核心库
53
ZhonTai.Admin.Core
中台Admin权限管理核心库
56

https://github.com/AngleSharp/AngleSharp/blob/main/CHANGELOG.md

.NET Standard 2.0

.NET Framework 4.6.1

.NET Framework 4.7.2

.NET 6.0

.NET 7.0

Version Downloads Last updated
1.4.1-beta.505 27 12/02/2025
1.4.1-beta.504 17 12/02/2025
1.4.1-beta.502 20 11/24/2025
1.4.0 19 11/14/2025
1.4.0-beta.499 22 11/14/2025
1.4.0-beta.497 15 11/23/2025
1.4.0-beta.496 13 11/27/2025
1.4.0-beta.495 14 11/12/2025
1.4.0-beta.493 19 11/12/2025
1.3.1 19 11/10/2025
1.3.1-beta.491 36 07/25/2025
1.3.1-beta.490 29 08/21/2025
1.3.1-beta.486 37 06/01/2025
1.3.0 36 04/25/2025
1.3.0-beta.484 34 05/24/2025
1.3.0-beta.477 24 04/28/2025
1.3.0-beta.476 31 04/28/2025
1.3.0-beta.470 35 03/30/2025
1.3.0-beta.468 39 02/23/2025
1.3.0-beta.466 33 01/29/2025
1.2.0 38 12/31/2024
1.2.0-beta.457 32 01/29/2025
1.2.0-beta.456 39 01/29/2025
1.2.0-beta.449 36 12/31/2024
1.2.0-beta.448 35 12/31/2024
1.2.0-beta.439 38 11/06/2024
1.2.0-beta.431 40 11/14/2024
1.2.0-beta.423 46 05/29/2024
1.2.0-beta.420 37 05/29/2024
1.2.0-beta.419 42 05/29/2024
1.2.0-beta.418 44 05/29/2024
1.2.0-beta.410 46 05/29/2024
1.2.0-beta.408 36 11/12/2024
1.1.2 37 05/29/2024
1.1.2-beta.407 45 05/29/2024
1.1.2-beta.395 43 05/29/2024
1.1.1 46 05/29/2024
1.1.1-beta.392 50 05/29/2024
1.1.1-beta.390 37 05/29/2024
1.1.1-beta.389 45 05/29/2024
1.1.1-beta.388 45 05/29/2024
1.1.1-beta.387 33 05/29/2024
1.1.1-beta.386 38 05/29/2024
1.1.1-beta.385 45 05/29/2024
1.1.0 35 05/29/2024
1.1.0-beta.384 43 05/29/2024
1.1.0-alpha-379 40 05/29/2024
1.1.0-alpha-378 46 05/29/2024
1.1.0-alpha-377 45 05/29/2024
1.1.0-alpha-376 37 05/29/2024
1.1.0-alpha-375 42 05/29/2024
1.1.0-alpha-374 41 05/29/2024
1.0.7 44 12/18/2023
1.0.7-alpha-342 44 05/29/2024
1.0.6 45 05/29/2024
1.0.6-alpha-341 37 05/29/2024
1.0.6-alpha-339 37 05/29/2024
1.0.6-alpha-331 49 05/29/2024
1.0.6-alpha-330 47 05/29/2024
1.0.6-alpha-328 48 05/29/2024
1.0.6-alpha-325 56 05/29/2024
1.0.6-alpha-321 44 05/29/2024
1.0.5 41 05/29/2024
1.0.5-alpha-317 47 05/29/2024
1.0.4 47 05/29/2024
1.0.4-alpha-316 46 05/29/2024
1.0.4-alpha-314 40 05/29/2024
1.0.4-alpha-311 36 05/29/2024
1.0.4-alpha-307 41 05/29/2024
1.0.4-alpha-301 47 05/29/2024
1.0.4-alpha-300 34 05/29/2024
1.0.4-alpha-298 43 05/29/2024
1.0.4-alpha-290 42 05/29/2024
1.0.4-alpha-289 41 05/29/2024
1.0.3 50 05/29/2024
1.0.3-alpha-287 40 05/29/2024
1.0.2 45 05/29/2024
1.0.2-alpha-284 38 05/29/2024
1.0.2-alpha-283 37 05/29/2024
1.0.2-alpha-282 37 05/29/2024
1.0.2-alpha-281 40 05/29/2024
1.0.2-alpha-278 40 05/29/2024
1.0.2-alpha-277 46 05/29/2024
1.0.2-alpha-276 39 05/29/2024
1.0.2-alpha-275 41 05/29/2024
1.0.2-alpha-274 39 05/29/2024
1.0.2-alpha-273 42 05/29/2024
1.0.2-alpha-261 45 05/29/2024
1.0.2-alpha-258 44 05/29/2024
1.0.2-alpha-257 42 05/29/2024
1.0.2-alpha-255 39 05/29/2024
1.0.2-alpha-251 36 05/29/2024
1.0.2-alpha-250 47 05/29/2024
1.0.2-alpha-249 40 05/29/2024
1.0.1 41 05/29/2024
1.0.1-alpha-248 42 05/29/2024
1.0.1-alpha-243 39 05/29/2024
1.0.1-alpha-242 41 05/29/2024
1.0.1-alpha-241 41 05/29/2024
1.0.1-alpha-235 40 05/29/2024
1.0.0 46 05/29/2024
1.0.0-ci-228 37 05/29/2024
1.0.0-alpha-231 40 05/29/2024
1.0.0-alpha-229 41 05/29/2024
0.17.1 43 12/10/2023
0.17.1-alpha-179 41 05/29/2024
0.17.1-alpha-178 44 05/29/2024
0.17.0 42 05/29/2024
0.17.0-alpha-177 36 05/29/2024
0.17.0-alpha-174 36 05/29/2024
0.17.0-alpha-173 37 05/29/2024
0.17.0-alpha-172 37 05/29/2024
0.17.0-alpha-171 35 05/29/2024
0.17.0-alpha-170 36 05/29/2024
0.17.0-alpha-169 41 05/29/2024
0.16.1 49 05/29/2024
0.16.1-alpha-99 37 05/29/2024
0.16.1-alpha-96 37 05/29/2024
0.16.1-alpha-91 37 05/29/2024
0.16.1-alpha-168 35 05/29/2024
0.16.1-alpha-167 45 05/29/2024
0.16.1-alpha-155 34 05/29/2024
0.16.1-alpha-153 43 05/29/2024
0.16.1-alpha-152 42 05/29/2024
0.16.1-alpha-148 49 05/29/2024
0.16.1-alpha-145 35 05/29/2024
0.16.1-alpha-144 41 05/29/2024
0.16.1-alpha-133 39 05/29/2024
0.16.1-alpha-127 43 05/29/2024
0.16.1-alpha-125 42 05/29/2024
0.16.1-alpha-120 45 05/29/2024
0.16.1-alpha-114 48 05/29/2024
0.16.1-alpha-112 42 05/29/2024
0.16.1-alpha-110 43 05/29/2024
0.16.1-alpha-108 43 05/29/2024
0.16.1-alpha-106 48 05/29/2024
0.16.1-alpha-104 40 12/03/2024
0.16.0 41 05/29/2024
0.16.0-alpha-86 36 05/29/2024
0.16.0-alpha-85 37 05/29/2024
0.16.0-alpha-84 47 05/29/2024
0.16.0-alpha-80 35 05/29/2024
0.16.0-alpha-79 38 05/29/2024
0.16.0-alpha-78 39 05/29/2024
0.16.0-alpha-77 44 05/29/2024
0.16.0-alpha-76 40 05/29/2024
0.16.0-alpha-75 44 05/29/2024
0.16.0-alpha-72 48 05/29/2024
0.15.0 44 05/29/2024
0.15.0-alpha-14 41 05/29/2024
0.14.0 41 05/29/2024
0.14.0-alpha-818 39 05/29/2024
0.14.0-alpha-817 40 05/29/2024
0.14.0-alpha-813 41 05/29/2024
0.14.0-alpha-811 39 05/29/2024
0.14.0-alpha-809 39 05/29/2024
0.14.0-alpha-805 41 05/29/2024
0.14.0-alpha-803 41 05/29/2024
0.14.0-alpha-802 44 05/29/2024
0.14.0-alpha-801 39 05/29/2024
0.14.0-alpha-798 33 05/29/2024
0.14.0-alpha-796 41 05/29/2024
0.14.0-alpha-794 33 05/29/2024
0.14.0-alpha-793 37 05/29/2024
0.14.0-alpha-790 41 05/29/2024
0.14.0-alpha-789 48 05/29/2024
0.14.0-alpha-788 35 05/29/2024
0.14.0-alpha-787 41 05/29/2024
0.14.0-alpha-784 38 05/29/2024
0.14.0-alpha-783 33 05/29/2024
0.13.0 41 06/05/2023
0.13.0-alpha-782 34 05/29/2024
0.13.0-alpha-775 40 05/29/2024
0.13.0-alpha-771 51 05/29/2024
0.13.0-alpha-768 39 05/29/2024
0.13.0-alpha-766 41 11/25/2024
0.13.0-alpha-764 46 05/29/2024
0.13.0-alpha-763 40 05/29/2024
0.13.0-alpha-760 37 05/29/2024
0.13.0-alpha-758 44 05/29/2024
0.13.0-alpha-756 41 05/29/2024
0.13.0-alpha-754 33 05/29/2024
0.13.0-alpha-748 39 05/29/2024
0.13.0-alpha-745 35 05/29/2024
0.13.0-alpha-744 40 05/29/2024
0.13.0-alpha-743 38 05/29/2024
0.13.0-alpha-742 36 05/29/2024
0.13.0-alpha-739 30 05/29/2024
0.13.0-alpha-737 44 05/29/2024
0.13.0-alpha-735 37 05/29/2024
0.13.0-alpha-734 41 05/29/2024
0.13.0-alpha-733 34 05/29/2024
0.12.1 37 05/29/2024
0.12.0 37 05/29/2024
0.11.0 40 05/29/2024
0.10.1 45 05/29/2024
0.10.0 39 05/29/2024
0.9.11 47 05/29/2024
0.9.10 47 05/29/2024
0.9.9.2 38 05/29/2024
0.9.9.1 48 05/29/2024
0.9.9 45 05/29/2024
0.9.8.1 34 05/29/2024
0.9.8 45 05/29/2024
0.9.7 32 05/29/2024
0.9.6 41 05/29/2024
0.9.5 36 05/29/2024
0.9.4 54 05/29/2024
0.9.3 41 05/29/2024
0.9.2 41 05/29/2024
0.9.1 44 12/06/2024
0.9.0 52 05/29/2024
0.8.9 52 05/29/2024
0.8.8 42 05/29/2024
0.8.7.1 53 05/29/2024
0.8.7 43 05/29/2024
0.8.6 37 05/29/2024
0.8.5 35 05/29/2024
0.8.4.1 35 11/27/2024
0.8.4 40 12/02/2024
0.8.1 37 05/29/2024
0.8.0 37 05/29/2024
0.7.0 36 05/29/2024
0.6.1 45 05/29/2024
0.6.0 37 05/29/2024
0.5.1 35 05/29/2024
0.5.0 36 05/29/2024
0.4.0 39 05/29/2024
0.3.7 41 05/29/2024
0.3.6 39 05/29/2024
0.3.5 41 05/29/2024
0.3.4 35 05/29/2024
0.3.3 40 05/29/2024
0.3.2 40 05/29/2024
0.3.1 36 05/29/2024
0.3.0 41 05/29/2024
0.2.9 40 05/28/2024
0.2.8 36 05/29/2024
0.2.7 43 05/29/2024
0.2.6 40 05/29/2024
0.2.5 41 05/29/2024
0.2.4 38 05/29/2024
0.2.3 42 05/29/2024
0.2.2 41 05/29/2024
0.2.1 37 05/25/2024
0.2.0 45 05/22/2024