Gets the value indicating if this IType is mutable.

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

Syntax

Visual Basic (Declaration)
Public Overrides NotOverridable ReadOnly Property IsMutable As Boolean
C#
public override sealed bool IsMutable { get; }
Visual C++
public:
virtual property bool IsMutable {
	bool get () override sealed;
}
JavaScript
function get_isMutable();

Field Value

false - an ImmutableType is not mutable.

Implements

IType..::.IsMutable

Remarks

This has been "sealed" because any subclasses are expected to be immutable. If the type is mutable then they should inherit from MutableType.

See Also