Initializes the specified commands with the state encoded in the specified URL.

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

Syntax

C#
public void DeconstructUrl(
	Uri requestUri,
	CommandInfoCollection commands,
	NameValueCollection parameters
)
Visual Basic (Declaration)
Public Sub DeconstructUrl ( _
	requestUri As Uri, _
	commands As CommandInfoCollection, _
	parameters As NameValueCollection _
)
Visual C++
public:
void DeconstructUrl(
	Uri^ requestUri, 
	CommandInfoCollection^ commands, 
	NameValueCollection^ parameters
)

Parameters

requestUri
Type: System..::.Uri
A URL, generated by a previous call to Construct(String, CommandInfoCollection, NameValueCollection).
commands
Type: Endeca.Web.Url..::.CommandInfoCollection
List of CommandInfo objects describing the EndecaCommands that should be initialized from the state encoded in requestUri.
parameters
Type: System.Collections.Specialized..::.NameValueCollection
A collection of additional parameters that should be initialized from the state encoded in requestUri.

See Also