AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="0.16.1-alpha-112" />

 CustomEvent

public class CustomEvent : Event
Represents a custom event that provides an additional details property.
public object Details { get; }

Gets the details that have been associated with the custom event.

public CustomEvent()

Creates a new event.

public CustomEvent(string type, bool bubbles = false, bool cancelable = false, object details = null)

Creates a new event and initializes it.

public void Init(string type, bool bubbles, bool cancelable, object details)

Initializes the custom event.