When implemented by a class, gets an ICollection of Property objects that this mapped class contains.

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

Syntax

Visual Basic (Declaration)
Public MustOverride ReadOnly Property PropertyClosureCollection As ICollection
C#
public abstract ICollection PropertyClosureCollection { get; }
Visual C++
public:
virtual property ICollection^ PropertyClosureCollection {
	ICollection^ get () abstract;
}
JavaScript
function get_propertyClosureCollection();

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