AngleSharp.Xml 1.0.0

dotnet add package AngleSharp.Xml --version 1.0.0
NuGet\Install-Package AngleSharp.Xml -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AngleSharp.Xml" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AngleSharp.Xml --version 1.0.0
#r "nuget: AngleSharp.Xml, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install AngleSharp.Xml as a Cake Addin
#addin nuget:?package=AngleSharp.Xml&version=1.0.0

// Install AngleSharp.Xml as a Cake Tool
#tool nuget:?package=AngleSharp.Xml&version=1.0.0

logo

AngleSharp.Xml

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

AngleSharp.Xml extends the core AngleSharp library with some XML capabilities. This repository is the home of the source for the AngleSharp.Xml NuGet package.

Basic Configuration

If you just want a configuration that works you should use the following code:

var config = Configuration.Default
    .WithXml(); // from AngleSharp.Xml

This will register a parser for XML related content.

XML Parser

Alternatively, you can also the XmlParser directly:

var parser = new XmlParser();
parser.ParseDocument(@"<?xml version=""1.0"" encoding=""ISO-8859-1""?>
    <note>
        <to>Tove</to>
        <from>Jani</from>
        <heading>Reminder</heading>
        <body>Don't forget me this weekend!</body>
    </note>"
);

The XmlParser supports a variety of options, most notably it can suppress (i.e., not throw on) errors.

Advantages of AngleSharp.Xml over System.Xml

The main advantage is that AngleSharp.Xml is part of the AngleSharp ecosystem and integrates well, e.g., by allowing remove XML files to be loaded, interpreting SVG documents or XHTML. A major point is AngleSharp.Xml also contains parts of a DTD parser, which could be used to validate XML documents.

Finally, the integration of AngleSharp.Xml in AngleSharp means that not only HTML documents may refer or use XML freely, but also the other way round. This is therefore as close to XML in a browser as you may get in .NET.

Features

  • Fully compliant XML parser
  • XML DOM similar to HTML(5)
  • DTD parser and validation check
  • XML serialization

Participating

Participation in the project is highly welcome. For this project the same rules as for the AngleSharp core project may be applied.

If you have any question, concern, or spot an issue then please report it before opening a pull request. An initial discussion is appreciated regardless of the nature of the problem.

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

This project has 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.

.NET Foundation

This project is supported by the .NET Foundation.

License

The MIT License (MIT)

Copyright (c) 2020 - 2023 AngleSharp

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on AngleSharp.Xml:

Package Downloads
invoisys.SDK.Xml

Package Description

SimpleSvg2LineSegementInterpolater

Generate line segments though interpolating svg shapes.

Scrape.NET

A scraper library for .NET

EPubBlazor

Package Description

GitHub repositories (4)

Showing the top 4 popular GitHub repositories that depend on AngleSharp.Xml:

Repository Stars
Jackett/Jackett
API Support for your favorite torrent trackers
Prowlarr/Prowlarr
mganss/HtmlSanitizer
Cleans HTML to avoid XSS attacks
Sicos1977/ChromiumHtmlToPdf
Convert HTML to PDF with a Chromium based browser
Version Downloads Last updated
1.0.0 151,405 1/15/2023
1.0.0-beta.27 45 2/25/2024
1.0.0-alpha-20 541 1/15/2023
1.0.0-alpha-18 490 1/15/2023
0.17.0 313,024 5/31/2022
0.17.0-alpha-15 486 7/14/2022
0.17.0-alpha-13 520 5/31/2022
0.16.0 150,455 6/12/2021
0.16.0-alpha-8 740 6/12/2021
0.16.0-alpha-12 3,503 11/25/2021
0.15.0 81,551 4/22/2021
0.15.0-alpha-7 597 6/12/2021
0.15.0-alpha-6 551 6/12/2021
0.15.0-alpha-3 580 4/22/2021
0.14.0 80,789 3/31/2020
0.14.0-alpha-49 721 3/31/2020
0.14.0-alpha-41 858 9/26/2019
0.14.0-alpha-1 588 4/22/2021
0.13.0 23,516 9/6/2019
0.13.0-alpha-37 841 9/6/2019
0.13.0-alpha-33 864 8/23/2019
0.13.0-alpha-31 795 8/23/2019
0.13.0-alpha-29 779 7/31/2019
0.13.0-alpha-27 864 7/31/2019
0.13.0-alpha-24 1,284 5/18/2019
0.12.1 3,447 5/14/2019
0.12.0 1,072 5/3/2019
0.11.0 1,599 2/13/2019