Returns the value of the specified propety from the specified command.

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

Syntax

C#
protected Object GetPropertyValue(
	EndecaCommand command,
	PropertyDescriptor prop
)
Visual Basic (Declaration)
Protected Function GetPropertyValue ( _
	command As EndecaCommand, _
	prop As PropertyDescriptor _
) As Object
Visual C++
protected:
Object^ GetPropertyValue(
	EndecaCommand^ command, 
	PropertyDescriptor^ prop
)

Parameters

command
Type: Endeca.Data.Provider..::.EndecaCommand
Command from which to retrieve the property value.
prop
Type: System.ComponentModel..::.PropertyDescriptor
Property for which value should be retrieved.

Remarks

This method is equivalent to GetValue(Object), but it is faster because it does not use reflection.

See Also