NetworkClientSearchInResponseBodyAsync Method |
Version 130.1.90
Searches for given string in response content.
Namespace: CefSharp.DevTools.NetworkAssembly: 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
)
public:
Task<SearchInResponseBodyResponse^>^ SearchInResponseBodyAsync(
String^ requestId,
String^ query,
Nullable<bool> caseSensitive = nullptr,
Nullable<bool> isRegex = nullptr
)
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
TaskSearchInResponseBodyResponsereturns System.Threading.Tasks.Task<SearchInResponseBodyResponse>
See Also