TrackEvent
The event that is published in case of a tracking
possibility (e.g., errors) coming from the dynamic DOM.
using AngleSharp.Dom.Events;
using System;
using System.Runtime.CompilerServices;
namespace AngleSharp.Browser.Dom.Events
{
[System.Runtime.CompilerServices.NullableContext(1)]
[System.Runtime.CompilerServices.Nullable(0)]
public class TrackEvent : Event
{
public Exception Error { get; }
public TrackEvent(string eventName, Exception error)
: base(eventName)
{
Error = error;
}
}
}