Given a CommandInfoCollection of commands, returns an IDictionary<(Of <(TKey, TValue>)>) representation of the commands. The UrlParams contained within the IDictionary<(Of <(TKey, TValue>)>) are 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.3.0 (2.1.3.622)

Syntax

C#
IDictionary<string, UrlParam> SerializeCommands(
	CommandInfoCollection commands
)
Visual Basic (Declaration)
Function SerializeCommands ( _
	commands As CommandInfoCollection _
) As IDictionary(Of String, UrlParam)
Visual C++
IDictionary<String^, UrlParam^>^ SerializeCommands(
	CommandInfoCollection^ commands
)

Parameters

commands
Type: CommandInfoCollection
The CommandInfoCollection contains the commands to serialize.

Return Value

Dictionary of UrlParams keyed by Endeca URL parameters.

See Also