Click or drag to resize

PageClientStartScreencastAsync Method

Version 102.0.100
Starts sending each frame using the `screencastFrame` event.

Namespace:  CefSharp.DevTools.Page
Assembly:  CefSharp (in CefSharp.dll) Version: 102.0.100.0 (102.0.100.0)
Syntax
public Task<DevToolsMethodResponse> StartScreencastAsync(
	StartScreencastFormat? format = null,
	int? quality = null,
	int? maxWidth = null,
	int? maxHeight = null,
	int? everyNthFrame = null
)

Parameters

format (Optional)
Type: SystemNullableStartScreencastFormat
Image compression format.
quality (Optional)
Type: SystemNullableInt32
Compression quality from range [0..100].
maxWidth (Optional)
Type: SystemNullableInt32
Maximum screenshot width.
maxHeight (Optional)
Type: SystemNullableInt32
Maximum screenshot height.
everyNthFrame (Optional)
Type: SystemNullableInt32
Send every n-th frame.

Return Value

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