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.Boolean
success
True if the rule matched |
System.Boolean
finalBehavior
Whether the rule actions indicated a final behavior (we must stop checking other rules). |
System.Boolean
executedAllActions
Whether the rule executed all actions |
System.String
lastExecutedId
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.Boolean
|
FinalBehavior
Whether the rule actions indicated a final behavior (we must stop checking other rules).
Declaration
public bool FinalBehavior { get; }
Property Value
System.Boolean
|
LastExecutedId
Id of the last executed action
Declaration
public string LastExecutedId { get; }
Property Value
System.String
|
Success
True if the rule matched
Declaration
public bool Success { get; }
Property Value
System.Boolean
|