matchRules property

List<HttpRouteRuleMatch>? matchRules
getter/setter pair

The list of criteria for matching attributes of a request to this routeRule.

This list has OR semantics: the request matches this routeRule when any of the matchRules are satisfied. However predicates within a given matchRule have AND semantics. All predicates within a matchRule must match for the request to match the rule.

Implementation

core.List<HttpRouteRuleMatch>? matchRules;