IBindable
Implemented by OM classes that may change internal state reflected with
a changed string representation.
using System;
namespace AngleSharp.Dom
{
public interface IBindable
{
event Action<string> Changed;
void Update(string value);
}
}