Given an IDictionary<(Of <(TKey, TValue>)>) and a CommandInfoCollection, modifies the commands in the CommandInfoCollection to reflect the state of the UrlParams contained within the IDictionary<(Of <(TKey, TValue>)>). The dictionary is keyed by Endeca URL parameter variables for the parameters, i.e. N, Ntt, Ntk, D, R, etc.

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

Syntax

C#
void DeserializeCommands(
	IDictionary<string, UrlParam> nameToUrlParam,
	CommandInfoCollection commands
)
Visual Basic (Declaration)
Sub DeserializeCommands ( _
	nameToUrlParam As IDictionary(Of String, UrlParam), _
	commands As CommandInfoCollection _
)
Visual C++
void DeserializeCommands(
	IDictionary<String^, UrlParam^>^ nameToUrlParam, 
	CommandInfoCollection^ commands
)

Parameters

nameToUrlParam
Type: System.Collections.Generic..::.IDictionary<(Of <(String, UrlParam>)>)
The IDictionary<(Of <(TKey, TValue>)>) containing the UrlParams.
commands
Type: CommandInfoCollection
The CommandInfoCollection contained the commands to update.

See Also