Click or drag to resize

DOMClientPerformSearchAsync Method

Version 86.0.240
Searches for a given string in the DOM tree. Use `getSearchResults` to access search results or `cancelSearch` to end this search session.

Namespace:  CefSharp.DevTools.DOM
Assembly:  CefSharp (in CefSharp.dll) Version: 86.0.240.0 (86.0.240.0)
Syntax
public Task<PerformSearchResponse> PerformSearchAsync(
	string query,
	Nullable<bool> includeUserAgentShadowDOM = null
)

Parameters

query
Type: SystemString
Plain text or query selector or XPath search query.
includeUserAgentShadowDOM (Optional)
Type: SystemNullableBoolean
True to search in user agent shadow DOM.

Return Value

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