An IType that may be used for a discriminator column.

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

Syntax

Visual Basic (Declaration)
Public Interface IDiscriminatorType _
	Implements IIdentifierType, IType, ICacheAssembler, ILiteralType
C#
public interface IDiscriminatorType : IIdentifierType, 
	IType, ICacheAssembler, ILiteralType
Visual C++
public interface class IDiscriminatorType : IIdentifierType, 
	IType, ICacheAssembler, ILiteralType
JavaScript
NHibernate.Type.IDiscriminatorType = function();
NHibernate.Type.IDiscriminatorType.createInterface('NHibernate.Type.IDiscriminatorType');

Remarks

This interface contains no new methods but does require that an IType that will be used in a discriminator column must implement both the IIdentifierType and ILiteralType interfaces.

See Also