Return a string containing the concatenation of path parameters for the URL. Parameters are ordered based on the order in the SortedDictionary. Path parameters occur before the "?" on a URL.

Namespace:  Endeca.Web.Url.Seo
Assembly:  Endeca.Web.Url.Seo (in Endeca.Web.Url.Seo.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
protected string GetPathParamsString(
	SortedDictionary<string, UrlParam> parameters
)
Visual Basic (Declaration)
Protected Function GetPathParamsString ( _
	parameters As SortedDictionary(Of String, UrlParam) _
) As String
Visual C++
protected:
String^ GetPathParamsString(
	SortedDictionary<String^, UrlParam^>^ parameters
)

Parameters

parameters
Type: System.Collections.Generic..::.SortedDictionary<(Of <(String, UrlParam>)>)
URL Parameters.

Return Value

URL Path.

Remarks

This method modifies the passed SortedDictionary -- any parameter included in the path is removed from the dictionary.

See Also