Constructor for Property instances.

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

Syntax

Visual Basic (Declaration)
Protected Sub New ( _
	name As String, _
	node As String, _
	type As IType _
)
C#
protected Property(
	string name,
	string node,
	IType type
)
Visual C++
protected:
Property(
	String^ name, 
	String^ node, 
	IType^ type
)
JavaScript
NHibernate.Tuple.Property = function(name, node, type);

Parameters

name
Type: System..::.String
The name by which the property can be referenced within its owner.
node
Type: System..::.String
The node name to use for XML-based representation of this property.
type
Type: NHibernate.Type..::.IType
The Hibernate Type of this property.

See Also