Click or drag to resize

InputClient.DispatchTouchEventAsync Method

Version 103.0.120
Dispatches a touch event to the page.

Namespace:  CefSharp.DevTools.Input
Assembly:  CefSharp (in CefSharp.dll) Version: 103.0.120.0 (103.0.120.0)
Syntax
public Task<DevToolsMethodResponse> DispatchTouchEventAsync(
	DispatchTouchEventType type,
	IList<TouchPoint> touchPoints,
	int? modifiers = null,
	double? timestamp = null
)

Parameters

type
Type: CefSharp.DevTools.Input.DispatchTouchEventType
Type of the touch event. TouchEnd and TouchCancel must not contain any touch points, whileTouchStart and TouchMove must contains at least one.
touchPoints
Type: System.Collections.Generic.IList<TouchPoint>
Active touch points on the touch device. One event per any changed point (compared toprevious touch event in a sequence) is generated, emulating pressing/moving/releasing pointsone by one.
modifiers (Optional)
Type: System.Nullable<Int32>
Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8(default: 0).
timestamp (Optional)
Type: System.Nullable<Double>
Time at which the event occurred.

Return Value

Type: Task<DevToolsMethodResponse>
returns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also