Class
RuleMatchResult

Used to hold the result of a rule match operation on a session

Definition

Namespace:Fiddler

Assembly:FiddlerCore.dll

Syntax:

cs-api-definition
public class RuleMatchResult

Inheritance: objectRuleMatchResult

Inherited Members object.GetType()object.MemberwiseClone()object.ToString()object.Equals(object)object.Equals(object, object)object.ReferenceEquals(object, object)object.GetHashCode()

Constructors

RuleMatchResult(bool, bool, bool, string)

Creates a new instance of the rule match result

Declaration

cs-api-definition
public RuleMatchResult(bool success, bool finalBehavior, bool executedAllActions, string lastExecutedId)

Parameters

success

bool

True if the rule matched

finalBehavior

bool

Whether the rule actions indicated a final behavior (we must stop checking other rules).

executedAllActions

bool

Whether the rule executed all actions

lastExecutedId

string

The id of the last executed action. Could be null if no actions was executed

Properties

ExecutedAllActions

Whether all actions were executed

Declaration

cs-api-definition
public bool ExecutedAllActions { get; }

Property Value

bool

FinalBehavior

Whether the rule actions indicated a final behavior (we must stop checking other rules).

Declaration

cs-api-definition
public bool FinalBehavior { get; }

Property Value

bool

LastExecutedId

Id of the last executed action

Declaration

cs-api-definition
public string LastExecutedId { get; }

Property Value

string

Success

True if the rule matched

Declaration

cs-api-definition
public bool Success { get; }

Property Value

bool