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