IAttributeObserver
Represents the interface for observing attribute changes.
using System.Runtime.CompilerServices;
namespace AngleSharp.Dom
{
[System.Runtime.CompilerServices.NullableContext(1)]
public interface IAttributeObserver
{
void NotifyChange(IElement host, string name, [System.Runtime.CompilerServices.Nullable(2)] string value);
}
}