Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: typo

...

Name

Cardinality

Description

<Path>0 or more

Matches requests whose first path component is an exact match

<PathRegex>0 or more

Matches requests whose remaining path as a whole matches a regular expression

<Query>0 or more

Matches requests containing a matching query string parameter

The further matching is doneas done as follows:

  1. First, by examining <Path> elements in order.
  2. Then, by checking any <PathRegex> elements in order against the part of the path that was not matched in the first step.
  3. Finally, by examining any <Query> elements in order.

...