AngleSharp by AngleSharp

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

.NET API 1,204,224 bytes

 Notation

sealed class Notation : Node
Represents a notation node.
using AngleSharp.Html; using System.Diagnostics; namespace AngleSharp.Dom { [DebuggerStepThrough] 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) { PublicId = PublicId, SystemId = SystemId }; CloneNode(notation, deep); return notation; } } }