Class SearchInResponseBodyCommandSettings
Searches for given string in response content.
public sealed class SearchInResponseBodyCommandSettings : ICommand
- Inheritance
-
SearchInResponseBodyCommandSettings
- Implements
- Inherited Members
Properties
CaseSensitive
If true, search is case sensitive.
[JsonPropertyName("caseSensitive")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? CaseSensitive { get; set; }
Property Value
- bool?
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
IsRegex
If true, treats string parameter as regex.
[JsonPropertyName("isRegex")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? IsRegex { get; set; }
Property Value
- bool?
Query
String to search for.
[JsonPropertyName("query")]
public string Query { get; set; }
Property Value
RequestId
Identifier of the network response to search.
[JsonPropertyName("requestId")]
public string RequestId { get; set; }