Constructor for Property instances.

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

Syntax

C#
protected Property(
	string name,
	string node,
	IType type
)
Visual Basic
Protected Sub New ( _
	name As String, _
	node As String, _
	type As IType _
)
Visual C++
protected:
Property(
	String^ name, 
	String^ node, 
	IType^ 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