This method is invoked once per item for all SimolClient operations which save data to SimpleDB.

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

Syntax

C#
void BeforeSave(
	PropertyValues values
)
Visual Basic
Sub BeforeSave ( _
	values As PropertyValues _
)
Visual C++
void BeforeSave(
	PropertyValues^ values
)

Parameters

values
Type: Simol..::..PropertyValues
The property values for a single item.

Remarks

This method is invoked once for each item passed to a call to Put(Object), PutAttributes<(Of <<'(T>)>>)(PropertyValues), etc. In other words, call to Simol.Put passing 100 items would result in 100 invocations of this method, once for each item.

See Also