Table of Contents

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

x decimal

Horizontal position of the move.

y decimal

Vertical position of the move.

Returns

Task

A Task that resolves when the message was confirmed by the browser.