Notation
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;
}
}
}