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

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

Syntax

Visual Basic (Declaration)
Public MustOverride Function Get ( _
	rs As IDataReader, _
	name As String _
) As Object
C#
public abstract Object Get(
	IDataReader rs,
	string name
)
Visual C++
public:
virtual Object^ Get(
	IDataReader^ rs, 
	String^ name
) abstract
JavaScript
function get(rs, name);

Parameters

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

Return Value

An object with the value from the database.

Remarks

Most implementors just call the Get(IDataReader, Int32) overload of this method.

See Also