Returns the deserialized property. The serialized property is found in serializedProperties with key Key. Uses the TypeConverter defined on the PropertyDescriptor to deserialize the value.

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

Syntax

C#
protected virtual Object DeserializeProperty(
	PropertyDescriptor prop,
	Dictionary<string, string> serializedProperties,
	CommandParameterPropertyAttribute commandAttribute
)
Visual Basic (Declaration)
Protected Overridable Function DeserializeProperty ( _
	prop As PropertyDescriptor, _
	serializedProperties As Dictionary(Of String, String), _
	commandAttribute As CommandParameterPropertyAttribute _
) As Object
Visual C++
protected:
virtual Object^ DeserializeProperty(
	PropertyDescriptor^ prop, 
	Dictionary<String^, String^>^ serializedProperties, 
	CommandParameterPropertyAttribute^ commandAttribute
)

Parameters

prop
Type: System.ComponentModel..::.PropertyDescriptor
Property whose value should be deserialized.
serializedProperties
Type: System.Collections.Generic..::.Dictionary<(Of <(String, String>)>)
Set of properties containing the desired deserializable property.
commandAttribute
Type: Endeca.Data..::.CommandParameterPropertyAttribute
Attribute decorating prop.

Return Value

See Also