AngleSharp by AngleSharp

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

.NET API 837,632 bytes

 Notation

sealed class Notation : Node
Represents a notation node.
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) { } internal override Node Clone(Document owner, bool deep) { Notation notation = new Notation(owner) { PublicId = PublicId, SystemId = SystemId }; CloneNode(notation, owner, deep); return notation; } } }