Initializes a new CommandInfo instance.

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

Syntax

C#
public CommandInfo(
	ICommandSource commandSource,
	CommandSerializationContext context,
	Object commandResult
)
Visual Basic (Declaration)
Public Sub New ( _
	commandSource As ICommandSource, _
	context As CommandSerializationContext, _
	commandResult As Object _
)
Visual C++
public:
CommandInfo(
	ICommandSource^ commandSource, 
	CommandSerializationContext^ context, 
	Object^ commandResult
)

Parameters

commandSource
Type: Endeca.Data.Provider..::.ICommandSource
Command source that provides access to an EndecaCommand.
context
Type: Endeca.Data..::.CommandSerializationContext
Provides contextual information for use with Serialize(EndecaCommand, CommandSerializationContext).
commandResult
Type: System..::.Object
Result of executing the command associated with provider

Exceptions

ExceptionCondition
System..::.ArgumentNullException if provider or context is null.

See Also