When implemented by a class, gets a value indicating if the implementor is an IAbstractComponentType.

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

Syntax

Visual Basic (Declaration)
ReadOnly Property IsComponentType As Boolean
C#
bool IsComponentType { get; }
Visual C++
property bool IsComponentType {
	bool get ();
}
JavaScript
function get_isComponentType();

Field Value

true if this is an IAbstractComponentType

Remarks

If true, the implementation must be castable to IAbstractComponentType. A component type may own collections or associations and hence must provide certain extra functionality.

See Also