AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.14.0-alpha-818" />

.NET API 829,952 bytes

 IMutationRecord

public interface IMutationRecord
MutationRecord defines an interface that will be passed to the observer's callback.
using AngleSharp.Attributes; namespace AngleSharp.Dom { [DomName("MutationRecord")] public interface IMutationRecord { [DomName("type")] string Type { get; } [DomName("target")] INode Target { get; } [DomName("addedNodes")] INodeList Added { get; } [DomName("removedNodes")] INodeList Removed { get; } [DomName("previousSibling")] INode PreviousSibling { get; } [DomName("nextSibling")] INode NextSibling { get; } [DomName("attributeName")] string AttributeName { get; } [DomName("attributeNamespace")] string AttributeNamespace { get; } [DomName("oldValue")] string PreviousValue { get; } } }