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

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

Syntax

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

Parameters

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

Remarks

This method is invoked once for each item returned by a call to Get<(Of <<'(T>)>>)(Object), GetAttributes(ItemMapping, Object, array<String>[]()[][]), GetAttributes<(Of <<'(T>)>>)(Object, array<String>[]()[][]), Select<(Of <<'(T>)>>)(SelectCommand<(Of <<'(T>)>>)), SelectAttributes<(Of <<'(T>)>>)(SelectCommand<(Of <<'(T>)>>)), SelectAttributes(SelectCommand), etc. In other words, call to Simol.Select which returned 100 items would result in 100 invocations of this method, once for each item.

See Also