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

Syntax

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

Remarks

This method calls SplitCommandState(String) to produce a dictionary of key value pairs representing serializied property values, and then passes this dictionary to DeserializeCommand(EndecaCommand, IDictionary<(Of <(String, String>)>)).

See Also