Initializes the specified command with values deserialized from the specified state, which was obtained by a previous call to SerializeCommand(EndecaCommand, CommandSerializationContext).

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

Syntax

C#
protected virtual void DeserializeCommand(
	string commandState,
	EndecaCommand command,
	CommandSerializationContext context
)
Visual Basic (Declaration)
Protected Overridable Sub DeserializeCommand ( _
	commandState As String, _
	command As EndecaCommand, _
	context As CommandSerializationContext _
)
Visual C++
protected:
virtual void DeserializeCommand(
	String^ commandState, 
	EndecaCommand^ command, 
	CommandSerializationContext^ context
)

Parameters

commandState
Type: System..::.String
State to deserialize.
command
Type: Endeca.Data.Provider..::.EndecaCommand
Command to initialize.
context
Type: Endeca.Data..::.CommandSerializationContext
Provides additional contextual information for use during deserialization.

See Also