Gets an ICollection of Property objects that this mapped class contains.

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

Syntax

C#
public override IEnumerable<Property> PropertyClosureIterator { get; }
Visual Basic
Public Overrides ReadOnly Property PropertyClosureIterator As IEnumerable(Of Property)
	Get
Visual C++
public:
virtual property IEnumerable<Property^>^ PropertyClosureIterator {
	IEnumerable<Property^>^ get () override;
}

Field Value

An ICollection of Property objects that this mapped class contains.

Remarks

This is all of the properties of this mapped class and each mapped class that it is inheriting from.

See Also