Gets or sets the snapshot of the Entity when it was marked as being ready for deletion.

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

Syntax

Visual Basic (Declaration)
Public Property DeletedState As Object()
C#
public Object[] DeletedState { get; set; }
Visual C++
public:
property array<Object^>^ DeletedState {
	array<Object^>^ get ();
	void set (array<Object^>^ value);
}
JavaScript
function get_deletedState();
function set_deletedState(value);

Field Value

The snapshot of the Entity.

Remarks

This will be nullNothingnullptra null reference (Nothing in Visual Basic) if the Entity is not being deleted.

See Also