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

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

Syntax

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

Parameters

commandState
Type: System..::.String
State to deserialize.
command
Type: Endeca.Data.Provider..::.EndecaCommand
Command to initialize.

Remarks

If the commandState is null or empty, no deserialization will be attempted.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionif command is null.

See Also