Table of Contents

Class CdpTouchscreen

Namespace
PuppeteerSharp.Cdp
Assembly
PuppeteerSharp.dll

Supports all classes in the .NET class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all .NET classes; it is the root of the type hierarchy.

public class CdpTouchscreen : Touchscreen, ITouchscreen
Inheritance
CdpTouchscreen
Implements

Methods

TouchEndAsync()

/// Dispatches a touchendt event.

public override Task TouchEndAsync()

Returns

Task

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

TouchMoveAsync(decimal, decimal)

Dispatches a touchmove event.

public override Task TouchMoveAsync(decimal x, decimal y)

Parameters

x decimal

The touch X location.

y decimal

The touch Y location.

Returns

Task

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

TouchStartAsync(decimal, decimal)

Dispatches a touchstart event.

public override Task TouchStartAsync(decimal x, decimal y)

Parameters

x decimal

The touch X location.

y decimal

The touch Y location.

Returns

Task

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