Initializes the specified command with values deserialized from the specified state string. This method calls Deserialize(String, EndecaCommand, CommandSerializationContext) with an empty CommandSerializationContext instance.

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
)
Visual Basic (Declaration)
Public Shared Sub Deserialize ( _
	commandState As String, _
	command As EndecaCommand _
)
Visual C++
public:
static void Deserialize(
	String^ commandState, 
	EndecaCommand^ command
)

Parameters

commandState
Type: System..::.String
Serialized form of a command, obtained from a previous call to Serialize(EndecaCommand).
command
Type: Endeca.Data.Provider..::.EndecaCommand
Command to initialize with deserialized values.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionIf command is null.

See Also