path

fun Route.path(format: RoutePathFormat = RoutePathFormat.Default): String(source)

Constructs the full path of the routing node by combining the path of the parent node and the formatted path of this node's selector, using the provided format.

Report a problem

Return

the full path of the routing node as a string.

Parameters

format

formats each selector in the node's lineage. Defaults to RoutePathFormat.Default.


String representation of the path matched by this route.

Report a problem