Class Notation
- Namespace
- AngleSharp.Dom
- Assembly
- AngleSharp.dll
Represents a notation node.
[DomName("Notation")]
public sealed class Notation : Node, INode, IEventTarget, IMarkupFormattable, IEquatable<INode>
- Inheritance
-
Notation
- Implements
- Inherited Members
- Extension Methods
Constructors
Notation(Document, string)
Creates a new notation node.
public Notation(Document owner, string name)
Parameters
Properties
PublicId
Gets or sets the value of the public identifier.
[DomName("publicId")]
public string? PublicId { get; set; }
Property Value
SystemId
Gets or sets the value of the system identifier.
[DomName("systemId")]
public string? SystemId { get; set; }
Property Value
Methods
Clone(Document, bool)
Returns a duplicate of the node on which this method was called.
public override Node Clone(Document newOwner, bool deep)
Parameters
Returns
- Node
The duplicate node.