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

Syntax

C#
protected override string SerializeCommand(
	EndecaCommand command
)
Visual Basic (Declaration)
Protected Overrides Function SerializeCommand ( _
	command As EndecaCommand _
) As String
Visual C++
protected:
virtual String^ SerializeCommand(
	EndecaCommand^ command
) override

Parameters

command
Type: Endeca.Data.Provider..::.EndecaCommand
Command to serialize.

Remarks

This method iterates over each property of the command that has been decorated with CommandParameterPropertyAttribute, and calls SerializeProperty(EndecaCommand, PropertyDescriptor, CommandParameterPropertyAttribute) for each property. The results are then joined together into a single string using NameValueDelimiter and PropertyDelimiter.

See Also