Table of Contents

Interface IAttributeObserver

Namespace
AngleSharp.Dom
Assembly
AngleSharp.dll

Represents the interface for observing attribute changes.

public interface IAttributeObserver
Extension Methods

Methods

NotifyChange(IElement, string, string?)

Defines the callback signature to react once an attribute changes.

void NotifyChange(IElement host, string name, string? value)

Parameters

host IElement

The element hosting the attribute.

name string

The name of the changed attribute.

value string

The new value of the attribute.