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

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
)
Visual Basic (Declaration)
Protected Overridable Sub DeserializeCommand ( _
	commandState As String, _
	command As EndecaCommand _
)
Visual C++
protected:
virtual void DeserializeCommand(
	String^ commandState, 
	EndecaCommand^ command
)

Parameters

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

Remarks

This method is supports backwards compatibility. Subclasses should prefer DeserializeCommand(String, EndecaCommand, CommandSerializationContext)

Exceptions

ExceptionCondition
System..::.InvalidOperationException if a subclass invokes this implemention.

See Also