Click or drag to resize

PageClientSearchInResourceAsync Method

Version 86.0.240
Searches for given string in resource content.

Namespace:  CefSharp.DevTools.Page
Assembly:  CefSharp (in CefSharp.dll) Version: 86.0.240.0 (86.0.240.0)
Syntax
public Task<SearchInResourceResponse> SearchInResourceAsync(
	string frameId,
	string url,
	string query,
	Nullable<bool> caseSensitive = null,
	Nullable<bool> isRegex = null
)

Parameters

frameId
Type: SystemString
Frame id for resource to search in.
url
Type: SystemString
URL of the resource to search in.
query
Type: SystemString
String to search for.
caseSensitive (Optional)
Type: SystemNullableBoolean
If true, search is case sensitive.
isRegex (Optional)
Type: SystemNullableBoolean
If true, treats string parameter as regex.

Return Value

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