Class RuleMatchResult
Used to hold the result of a rule match operation on a session
Inheritance
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public class RuleMatchResult : Object
Constructors
RuleMatchResult(Boolean, Boolean, Boolean, String)
Creates a new instance of the rule match result
Declaration
public RuleMatchResult(bool success, bool finalBehavior, bool executedAllActions, string lastExecutedId)
Parameters
System. True if the rule matched |
System. Whether the rule actions indicated a final behavior (we must stop checking other rules). |
System. Whether the rule executed all actions |
System. The id of the last executed action. Could be null if no actions was executed |
Properties
ExecutedAllActions
Whether all actions were executed
Declaration
public bool ExecutedAllActions { get; }
Property Value
System.
|
FinalBehavior
Whether the rule actions indicated a final behavior (we must stop checking other rules).
Declaration
public bool FinalBehavior { get; }
Property Value
System.
|
LastExecutedId
Id of the last executed action
Declaration
public string LastExecutedId { get; }
Property Value
System.
|
Success
True if the rule matched
Declaration
public bool Success { get; }
Property Value
System.
|