Generate a loggable string representation of the collection (value).

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

Syntax

C#
string ToLoggableString(
	Object value,
	ISessionFactoryImplementor factory
)
Visual Basic
Function ToLoggableString ( _
	value As Object, _
	factory As ISessionFactoryImplementor _
) As String
Visual C++
String^ ToLoggableString(
	Object^ value, 
	ISessionFactoryImplementor^ factory
)

Parameters

value
Type: System..::..Object
The collection to be logged; guaranteed to be non-null and initialized.
factory
Type: NHibernate.Engine..::..ISessionFactoryImplementor
The factory.

Return Value

The loggable string representation.

See Also