PageClientStartScreencastAsync Method |
Version 88.2.90
Starts sending each frame using the `screencastFrame` event.
Namespace:
CefSharp.DevTools.Page
Assembly:
CefSharp (in CefSharp.dll) Version: 88.2.90.0 (88.2.90.0)
Syntax public Task<DevToolsMethodResponse> StartScreencastAsync(
string format = null,
Nullable<int> quality = null,
Nullable<int> maxWidth = null,
Nullable<int> maxHeight = null,
Nullable<int> everyNthFrame = null
)
public:
Task<DevToolsMethodResponse^>^ StartScreencastAsync(
String^ format = nullptr,
Nullable<int> quality = nullptr,
Nullable<int> maxWidth = nullptr,
Nullable<int> maxHeight = nullptr,
Nullable<int> everyNthFrame = nullptr
)
Parameters
- format (Optional)
- Type: SystemString
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:
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also