Table of Contents

Class Route

Namespace
Artemis.UI.Shared.Routing
Assembly
Artemis.UI.Shared.dll

Represents a route at a certain path.

public class Route
Inheritance
object
Route

Constructors

Route(string)

Initializes a new instance of the Route class.

public Route(string path)

Parameters

path string

The path of the route.

Properties

Path

Gets the path of the route.

public string Path { get; }

Property Value

string

Segments

Gets the list of segments that makes up the path.

public List<RouteSegment> Segments { get; }

Property Value

List<RouteSegment>

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.