AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.9.9.2" />

.NET API 1,223,680 bytes

 IBindable

public interface 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); } }