Common base class for CharType and AnsiCharType.

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

Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public MustInherit Class BaseCharType _
	Inherits ValueTypeType _
	Implements IDiscriminatorType, IIdentifierType, IType, ICacheAssembler,  _
	ILiteralType
C#
[SerializableAttribute]
public abstract class BaseCharType : ValueTypeType, 
	IDiscriminatorType, IIdentifierType, IType, ICacheAssembler, ILiteralType
Visual C++
[SerializableAttribute]
public ref class BaseCharType abstract : public ValueTypeType, 
	IDiscriminatorType, IIdentifierType, IType, ICacheAssembler, ILiteralType
JavaScript
NHibernate.Type.BaseCharType = function();

Type.createClass(
	'NHibernate.Type.BaseCharType',
	NHibernate.Type.ValueTypeType,
	NHibernate.Type.IDiscriminatorType,
	NHibernate.Type.IIdentifierType,
	NHibernate.Type.IType,
	NHibernate.Type.ICacheAssembler,
	NHibernate.Type.ILiteralType);

Inheritance Hierarchy

System..::.Object
  NHibernate.Type..::.AbstractType
    NHibernate.Type..::.NullableType
      NHibernate.Type..::.ImmutableType
        NHibernate.Type..::.ValueTypeType
          NHibernate.Type..::.BaseCharType
            NHibernate.Type..::.AnsiCharType
            NHibernate.Type..::.CharType

See Also