Converts the value of the property in Properties with the specified name into a CLR object. See Parse<(Of <(T>)>)(String) for further details.

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

Syntax

C#
protected virtual T ParseProperty<T>(
	string propertyName
)
Visual Basic (Declaration)
Protected Overridable Function ParseProperty(Of T) ( _
	propertyName As String _
) As T
Visual C++
protected:
generic<typename T>
virtual T ParseProperty(
	String^ propertyName
)

Parameters

propertyName
Type: System..::.String
Name of the property whose value should be parsed.

Type Parameters

T
Type to which the property value should be parsed.

Exceptions

ExceptionCondition
System..::.ArgumentException if propertyName is null or empty.
System..::.InvalidOperationException if there is no value available to parse for the specified property.

See Also