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)
Syntaxpublic 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: 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