Returns a value indicating if the specified serialized value of the specified command property should be included in the serialized representation of the command

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

Syntax

C#
protected virtual bool ShouldIncludeSerializedProperty(
	PropertyDescriptor property,
	EndecaCommand command,
	CommandParameterPropertyAttribute commandAttribute,
	string serializedPropertyValue
)
Visual Basic (Declaration)
Protected Overridable Function ShouldIncludeSerializedProperty ( _
	property As PropertyDescriptor, _
	command As EndecaCommand, _
	commandAttribute As CommandParameterPropertyAttribute, _
	serializedPropertyValue As String _
) As Boolean
Visual C++
protected:
virtual bool ShouldIncludeSerializedProperty(
	PropertyDescriptor^ property, 
	EndecaCommand^ command, 
	CommandParameterPropertyAttribute^ commandAttribute, 
	String^ serializedPropertyValue
)

Parameters

property
Type: System.ComponentModel..::.PropertyDescriptor
The command property that is being serialized.
command
Type: Endeca.Data.Provider..::.EndecaCommand
The command whose property was serialized.
commandAttribute
Type: Endeca.Data..::.CommandParameterPropertyAttribute
Attribute decorating the command property.
serializedPropertyValue
Type: System..::.String
Serialized representation of the property.

See Also