| NetworkClientSearchInResponseBodyAsync Method  | 
Version 90.6.50 
            Searches for given string in response content.
            
 
    Namespace: 
   CefSharp.DevTools.Network
    Assembly:
   CefSharp (in CefSharp.dll) Version: 90.6.50.0 (90.6.50.0)
 Syntax
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
See Also