Gets or sets the EndecaCommand that represents the initial 'default' state of the command to be serialized.

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

Syntax

C#
public EndecaCommand DefaultCommand { get; set; }
Visual Basic (Declaration)
Public Property DefaultCommand As EndecaCommand
Visual C++
public:
property EndecaCommand^ DefaultCommand {
	EndecaCommand^ get ();
	void set (EndecaCommand^ value);
}

Remarks

A CommandSerializationProvider implementation may make used of this initial command when constructing the state string for the command, perhaps not including property values that match the values of the default command as part of the state string.

See Also