This method is invoked once per item for all SimolClient operations which delete data from SimpleDB.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
void BeforeDelete(
	Object itemName,
	List<string> propertyNames
)
Visual Basic
Sub BeforeDelete ( _
	itemName As Object, _
	propertyNames As List(Of String) _
)
Visual C++
void BeforeDelete(
	Object^ itemName, 
	List<String^>^ propertyNames
)

Parameters

itemName
Type: System..::..Object
Name of the item being deleted.
propertyNames
Type: System.Collections.Generic..::..List<(Of <(<'String>)>)>
The property names of the attributes being deleted.

Remarks

This method is invoked once for each item passed to Delete<(Of <<'(T>)>>)(Object), DeleteAttributes(ItemMapping, Object, array<String>[]()[][]), etc.

See Also