AngleSharp by Florian Rappl

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

 TouchEvent

public class TouchEvent : UiEvent
Represents the event arguments for a touch event.
using AngleSharp.Attributes; namespace AngleSharp.Dom.Events { [DomName("TouchEvent")] public class TouchEvent : UiEvent { [DomName("touches")] public ITouchList Touches { get; set; } [DomName("targetTouches")] public ITouchList TargetTouches { get; set; } [DomName("changedTouches")] public ITouchList ChangedTouches { get; set; } [DomName("altKey")] public bool IsAltPressed { get; set; } [DomName("metaKey")] public bool IsMetaPressed { get; set; } [DomName("ctrlKey")] public bool IsCtrlPressed { get; set; } [DomName("shiftKey")] public bool IsShiftPressed { get; set; } } }