AngleSharp by AngleSharp

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

 InputEvent

public class InputEvent : Event
Represents the event arguments for an input event.
public string Data { get; }

Gets the data that has been entered.

public InputEvent()

Creates a new event.

public InputEvent(string type, bool bubbles = false, bool cancelable = false, string data = null)

Creates a new event and initializes it.

public void Init(string type, bool bubbles, bool cancelable, string data)

Initializes the input event.