PageClientSearchInResourceAsync Method  | 
Version 93.1.111 
            Searches for given string in resource content.
            
 
    Namespace: 
   CefSharp.DevTools.Page
    Assembly:
   CefSharp (in CefSharp.dll) Version: 93.1.111.0 (93.1.111.0)
Syntaxpublic Task<SearchInResourceResponse> SearchInResourceAsync(
	string frameId,
	string url,
	string query,
	bool? caseSensitive = null,
	bool? isRegex = null
)
public:
Task<SearchInResourceResponse^>^ SearchInResourceAsync(
	String^ frameId, 
	String^ url, 
	String^ query, 
	Nullable<bool> caseSensitive = nullptr, 
	Nullable<bool> isRegex = nullptr
)
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: 
TaskSearchInResourceResponsereturns System.Threading.Tasks.Task<SearchInResourceResponse>
See Also