Interface ITouchHandle
- Namespace
- PuppeteerSharp.Input
- Assembly
- PuppeteerSharp.dll
The TouchHandle interface exposes methods to manipulate touches that have been started.
public interface ITouchHandle
Methods
EndAsync()
Dispatches a touchend event for this touch.
Task EndAsync()
Returns
- Task
A Task that resolves when the message was confirmed by the browser.
MoveAsync(decimal, decimal)
Dispatches a touchMove event for this touch.
Task MoveAsync(decimal x, decimal y)
Parameters
Returns
- Task
A Task that resolves when the message was confirmed by the browser.