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) {
PublicId = PublicId,
SystemId = SystemId
};
CloneNode(notation, deep);
return notation;
}
}
}