Click or drag to resize

NetworkClientSearchInResponseBodyAsync Method

Version 86.0.240
Searches for given string in response content.

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

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: TaskSearchInResponseBodyResponse
returns System.Threading.Tasks.Task<SearchInResponseBodyResponse>
See Also