Class RuleAction
The rule actions are executed when a session matches its conditions
Inheritance
Namespace: FiddlerCore.Common.Rules
Assembly: FiddlerCore.dll
Syntax
public class RuleAction : Object
Constructors
RuleAction()
Declaration
public RuleAction()
Fields
FinalActions
Declaration
public static readonly List<RuleActionType> FinalActions
Field Value
System.
|
Properties
CaseInsensitiveKey
Show if the key comparison is case-insensitive
Declaration
public bool CaseInsensitiveKey { get; set; }
Property Value
System.
|
CaseInsensitiveValue
Show if the key comparison is case-insensitive
Declaration
public bool CaseInsensitiveValue { get; set; }
Property Value
System.
|
Condition
The condition of the action (set, replace)
Declaration
public string Condition { get; set; }
Property Value
System.
|
Find
The text to search for in the value that the action is updating.
Declaration
public string Find { get; set; }
Property Value
System.
|
Id
Unique id for this rule or group
Declaration
public string Id { get; set; }
Property Value
System.
|
IsFinal
Whether the action is final
Declaration
public bool IsFinal { get; set; }
Property Value
System.
|
Key
The key to match (depending on the action)
Declaration
public string Key { get; set; }
Property Value
System.
|
Type
Value
The value to match (depending on the action)
Declaration
public string Value { get; set; }
Property Value
System.
|
Methods
EmptyAction()
Get a rule action object used to quickly create new ones
Declaration
public static RuleAction EmptyAction()
Returns
Rule The default rule action value |