Adds a TypedValue based on the value and type parameters to the IList in the list parameter.

Namespace:  NHibernate.Expression
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Protected Sub AddPropertyTypedValue ( _
	value As Object, _
	type As IType, _
	list As IList _
)
C#
protected void AddPropertyTypedValue(
	Object value,
	IType type,
	IList list
)
Visual C++
protected:
void AddPropertyTypedValue(
	Object^ value, 
	IType^ type, 
	IList^ list
)
JavaScript
function addPropertyTypedValue(value, type, list);

Parameters

value
Type: System..::.Object
The value of the Property.
type
Type: NHibernate.Type..::.IType
The IType of the Property.
list
Type: System.Collections..::.IList
The IList to add the TypedValue to.

Remarks

This method will add TypedValue objects to the list parameter.

See Also