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

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

Syntax

C#
bool IsComponentType { get; }
Visual Basic
ReadOnly Property IsComponentType As Boolean
	Get
Visual C++
property bool IsComponentType {
	bool get ();
}

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