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

Syntax

Visual Basic (Declaration)
Public Overrides Sub NullSafeSet ( _
	st As IDbCommand, _
	value As Object, _
	index As Integer, _
	settable As Boolean(), _
	session As ISessionImplementor _
)
C#
public override void NullSafeSet(
	IDbCommand st,
	Object value,
	int index,
	bool[] settable,
	ISessionImplementor session
)
Visual C++
public:
virtual void NullSafeSet(
	IDbCommand^ st, 
	Object^ value, 
	int index, 
	array<bool>^ settable, 
	ISessionImplementor^ session
) override
JavaScript
function nullSafeSet(st, value, index, settable, session);

Parameters

st
Type: System.Data..::.IDbCommand
value
Type: System..::.Object
index
Type: System..::.Int32
settable
Type: array< System..::.Boolean >[]()[]
session
Type: NHibernate.Engine..::.ISessionImplementor

Implements

IType..::.NullSafeSet(IDbCommand, Object, Int32, array<Boolean>[]()[], ISessionImplementor)

See Also