Return a string containing the concatenation of query string parameters for the URL. Query string parameters occur after 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 GetQueryParamsString(
	SortedDictionary<string, UrlParam> parameters
)
Visual Basic (Declaration)
Protected Function GetQueryParamsString ( _
	parameters As SortedDictionary(Of String, UrlParam) _
) As String
Visual C++
protected:
String^ GetQueryParamsString(
	SortedDictionary<String^, UrlParam^>^ parameters
)

Parameters

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

Return Value

URL query parameters

See Also