Initializes a new CommandActionInfo object.

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

Syntax

C#
public CommandActionInfo(
	CommandInfoCollection commands,
	NameValueCollection parameters
)
Visual Basic (Declaration)
Public Sub New ( _
	commands As CommandInfoCollection, _
	parameters As NameValueCollection _
)
Visual C++
public:
CommandActionInfo(
	CommandInfoCollection^ commands, 
	NameValueCollection^ parameters
)

Parameters

commands
Type: Endeca.Web.Url..::.CommandInfoCollection
Collection of CommandInfo objects describing the commands that have been registered with a UrlManager.
parameters
Type: System.Collections.Specialized..::.NameValueCollection
Collection of parameter values that have been associated with a UrlManager.

Exceptions

ExceptionCondition
System..::.ArgumentNullException if commands or parameters is null.

See Also