The method how RxPaths are built.
| C# | Visual Basic | Visual C++ |
public enum PathBuildMode
Public Enumeration PathBuildMode
public enum class PathBuildMode
| Member | Description |
|---|---|
| Volatile |
No optimization is performed. Path predicates contain all valid, appropriate and existing attribute values
or indexes if no attributes can be used. Path predicates include volatile attributes such as handle or procid.
|
| Simple |
No optimization is performed. Path predicates contain all valid, appropriate and existing attribute values
or indexes if no attributes can be used.
|
| Reduce |
Reduces the number of path predicates such that the path remains non-ambiguous.
This usually shortens the path and makes it more robust by eliminating unnecessary attributes.
|
| SearchReduce |
Performs aggressive path optimization by trying to reduce the path to a "//tagname"-style search-expression.
This can be very slow, depending on the number of elements in the current web document. Usually results in very compact search paths.
|
| SearchReduceAppItem |
ExperiMental ;)
|
