InputClientDispatchTouchEventAsync Method | 
Version 130.1.90
            Dispatches a touch event to the page.
            
Namespace: CefSharp.DevTools.InputAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntaxpublic Task<DevToolsMethodResponse> DispatchTouchEventAsync(
	DispatchTouchEventType type,
	IList<TouchPoint> touchPoints,
	int? modifiers = null,
	double? timestamp = null
)
public:
Task<DevToolsMethodResponse^>^ DispatchTouchEventAsync(
	DispatchTouchEventType type, 
	IList<TouchPoint^>^ touchPoints, 
	Nullable<int> modifiers = nullptr, 
	Nullable<double> timestamp = nullptr
)
Parameters
- type  DispatchTouchEventType
 - Type of the touch event. TouchEnd and TouchCancel must not contain any touch points, whileTouchStart and TouchMove must contains at least one.
 - touchPoints  IListTouchPoint
 - 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  NullableInt32  (Optional)
 - Bit field representing pressed modifier keys. Alt=1, Ctrl=2, Meta/Command=4, Shift=8(default: 0).
 - timestamp  NullableDouble  (Optional)
 - Time at which the event occurred.
 
Return Value
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also