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

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

Syntax

C#
protected abstract void Deconstruct(
	Uri requestUri,
	CommandInfoCollection commands,
	NameValueCollection parameters
)
Visual Basic (Declaration)
Protected MustOverride Sub Deconstruct ( _
	requestUri As Uri, _
	commands As CommandInfoCollection, _
	parameters As NameValueCollection _
)
Visual C++
protected:
virtual void Deconstruct(
	Uri^ requestUri, 
	CommandInfoCollection^ commands, 
	NameValueCollection^ parameters
) abstract

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