When implemented by a class, gets the Type returned by the NullSafeGet() methods.

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

Syntax

Visual Basic (Declaration)
Public MustOverride ReadOnly Property ReturnedClass As Type
C#
public abstract Type ReturnedClass { get; }
Visual C++
public:
virtual property Type^ ReturnedClass {
	Type^ get () abstract;
}
JavaScript
function get_returnedClass();

Field Value

The Type from the .NET framework.

Implements

IType..::.ReturnedClass

Remarks

This is used to establish the class of an array of this Itype

See Also