When implemented by a class, gets the object in the IDataReader for the Property.

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

Syntax

C#
public abstract Object Get(
	IDataReader rs,
	int index
)
Visual Basic
Public MustOverride Function Get ( _
	rs As IDataReader, _
	index As Integer _
) As Object
Visual C++
public:
virtual Object^ Get(
	IDataReader^ rs, 
	int index
) abstract

Parameters

rs
Type: System.Data..::..IDataReader
The IDataReader that contains the value.
index
Type: System..::..Int32
The index of the field to get the value from.

Return Value

An object with the value from the database.

See Also