Click or drag to resize

DebuggerClient.SearchInContentAsync Method

Version 102.0.100
Searches for given string in script content.

Namespace:  CefSharp.DevTools.Debugger
Assembly:  CefSharp (in CefSharp.dll) Version: 102.0.100.0 (102.0.100.0)
Syntax
public Task<SearchInContentResponse> SearchInContentAsync(
	string scriptId,
	string query,
	bool? caseSensitive = null,
	bool? isRegex = null
)

Parameters

scriptId
Type: System.String
Id of the script to search in.
query
Type: System.String
String to search for.
caseSensitive (Optional)
Type: System.Nullable<Boolean>
If true, search is case sensitive.
isRegex (Optional)
Type: System.Nullable<Boolean>
If true, treats string parameter as regex.

Return Value

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