Initializes the specified command with values deserialized from the specified state string.

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

Syntax

C#
public static void Deserialize(
	string commandState,
	EndecaCommand command,
	CommandSerializationContext context
)
Visual Basic (Declaration)
Public Shared Sub Deserialize ( _
	commandState As String, _
	command As EndecaCommand, _
	context As CommandSerializationContext _
)
Visual C++
public:
static void Deserialize(
	String^ commandState, 
	EndecaCommand^ command, 
	CommandSerializationContext^ context
)

Parameters

commandState
Type: System..::.String
Serialized form of a command, obtained from a previous call to Serialize(EndecaCommand, CommandSerializationContext).
command
Type: Endeca.Data.Provider..::.EndecaCommand
Command to initialize with deserialized values.
context
Type: Endeca.Data..::.CommandSerializationContext
Provides additional contextual information for use during deserialization.

See Also