AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.6" />

.NET API 1,174,016 bytes

 Notation

sealed class Notation : Node
Represents a notation node.
using AngleSharp.Html; namespace AngleSharp.Dom { internal sealed class Notation : Node { public string PublicId { get; set; } public string SystemId { get; set; } internal Notation(Document owner) : base(owner, "#notation", NodeType.Notation, NodeFlags.None) { } public override INode Clone(bool deep = true) { Notation notation = new Notation(base.Owner); notation.PublicId = PublicId; notation.SystemId = SystemId; Notation notation2 = notation; Node.CopyProperties(this, notation2, deep); return notation2; } } }