AngleSharp by AngleSharp

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

.NET API 829,440 bytes

 Notation

public sealed class Notation : Node
Represents a notation node.
using AngleSharp.Attributes; namespace AngleSharp.Dom { [DomName("Notation")] public sealed class Notation : Node { [DomName("publicId")] public string PublicId { get; set; } [DomName("systemId")] public string SystemId { get; set; } public Notation(Document owner, string name) : base(owner, name, NodeType.Notation, NodeFlags.None) { } public override Node Clone(Document newOwner, bool deep) { Notation notation = new Notation(newOwner, base.NodeName); CloneNode(notation, newOwner, deep); return notation; } } }