NetworkClientSearchInResponseBodyAsync Method  | 
Version 89.0.170 
            Searches for given string in response content.
            
 
    Namespace: 
   CefSharp.DevTools.Network
    Assembly:
   CefSharp (in CefSharp.dll) Version: 89.0.170.0 (89.0.170.0)
Syntaxpublic Task<SearchInResponseBodyResponse> SearchInResponseBodyAsync(
	string requestId,
	string query,
	Nullable<bool> caseSensitive = null,
	Nullable<bool> isRegex = null
)
public:
Task<SearchInResponseBodyResponse^>^ SearchInResponseBodyAsync(
	String^ requestId, 
	String^ query, 
	Nullable<bool> caseSensitive = nullptr, 
	Nullable<bool> isRegex = nullptr
)
Parameters
- requestId
 - Type: SystemString
Identifier of the network response to search. - 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: 
TaskSearchInResponseBodyResponsereturns System.Threading.Tasks.Task<SearchInResponseBodyResponse>
See Also