Base 36 decode any UrlParam contained within the urlParams. Only the parameters contained within the ParameterEncoders will be base 36 decoded.

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 IDictionary<string, UrlParam> DecodeUrlParams(
	IDictionary<string, UrlParam> urlParams
)
Visual Basic (Declaration)
Protected Function DecodeUrlParams ( _
	urlParams As IDictionary(Of String, UrlParam) _
) As IDictionary(Of String, UrlParam)
Visual C++
protected:
IDictionary<String^, UrlParam^>^ DecodeUrlParams(
	IDictionary<String^, UrlParam^>^ urlParams
)

Parameters

urlParams
Type: System.Collections.Generic..::.IDictionary<(Of <(String, UrlParam>)>)
URL parameters to decode.

Return Value

Decoded dictionary of URL paramters, keyed by name.

See Also