Click or drag to resize

NetworkClientSearchInResponseBodyAsync Method

Version 130.1.90
Searches for given string in response content.

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

Parameters

requestId  String
Identifier of the network response to search.
query  String
String to search for.
caseSensitive  NullableBoolean  (Optional)
If true, search is case sensitive.
isRegex  NullableBoolean  (Optional)
If true, treats string parameter as regex.

Return Value

TaskSearchInResponseBodyResponse
returns System.Threading.Tasks.Task<SearchInResponseBodyResponse>
See Also