NetworkClientSearchInResponseBodyAsync Method |
Version 106.0.290
Searches for given string in response content.
Namespace:
CefSharp.DevTools.Network
Assembly:
CefSharp (in CefSharp.dll) Version: 106.0.290.0 (106.0.290.0)
Syntax public Task<SearchInResponseBodyResponse> SearchInResponseBodyAsync(
string requestId,
string query,
bool? caseSensitive = null,
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