Routing.FormatRoute Method

Definition

Overloads

Name Description
FormatRoute(List<String>)

Formats a list of route segments into a single route string.

FormatRoute(String)

Formats a route string.

FormatRoute(List<String>)

Source:
Routing.cs
Source:
Routing.cs
Source:
Routing.cs
Source:
Routing.cs

Formats a list of route segments into a single route string.

public:
 static System::String ^ FormatRoute(System::Collections::Generic::List<System::String ^> ^ segments);
public static string FormatRoute(System.Collections.Generic.List<string> segments);
static member FormatRoute : System.Collections.Generic.List<string> -> string
Public Shared Function FormatRoute (segments As List(Of String)) As String

Parameters

segments
List<String>

The route segments to format.

Returns

The formatted route string.

Applies to

FormatRoute(String)

Source:
Routing.cs
Source:
Routing.cs
Source:
Routing.cs
Source:
Routing.cs

Formats a route string.

public:
 static System::String ^ FormatRoute(System::String ^ route);
public static string FormatRoute(string route);
static member FormatRoute : string -> string
Public Shared Function FormatRoute (route As String) As String

Parameters

route
String

The route string to format.

Returns

The formatted route string.

Applies to