Click or drag to resize

NetworkClient.SearchInResponseBodyAsync Method

Version 105.3.390
Searches for given string in response content.

Namespace:  CefSharp.DevTools.Network
Assembly:  CefSharp (in CefSharp.dll) Version: 105.3.390.0 (105.3.390.0)
Syntax
public Task<SearchInResponseBodyResponse> SearchInResponseBodyAsync(
	string requestId,
	string query,
	bool? caseSensitive = null,
	bool? isRegex = null
)

Parameters

requestId
Type: System.String
Identifier of the network response to search.
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<SearchInResponseBodyResponse>
returns System.Threading.Tasks.Task<SearchInResponseBodyResponse>
See Also