Table of Contents

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

owner Document
name string

Properties

PublicId

Gets or sets the value of the public identifier.

[DomName("publicId")]
public string? PublicId { get; set; }

Property Value

string

SystemId

Gets or sets the value of the system identifier.

[DomName("systemId")]
public string? SystemId { get; set; }

Property Value

string

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

newOwner Document
deep bool

Returns

Node

The duplicate node.