IAttributeObserver public interface IAttributeObserver Represents the interface for observing attribute changes. Documentation Code namespace AngleSharp.Dom { public interface IAttributeObserver { void NotifyChange(IElement host, string name, string value); } }