HtmlSanitizer by Michael Ganss

<PackageReference Include="HtmlSanitizer" Version="6.0.437" />

 PostProcessDomEventArgs

Provides data for the PostProcessDom event.
using AngleSharp.Html.Dom; using System; using System.Runtime.CompilerServices; namespace Ganss.XSS { [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.Nullable(0)] public class PostProcessDomEventArgs : EventArgs { public IHtmlDocument Document { get; set; } public PostProcessDomEventArgs(IHtmlDocument document) { Document = document; } } }