Click or drag to resize

SQLiteCommandOnInstanceCreated Method

Invoked every time an instance is loaded from the database.

Namespace:  Unvired.Kernel.SQLite
Assembly:  Unvired.Kernel.UWP (in Unvired.Kernel.UWP.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
protected virtual void OnInstanceCreated(
	Object obj
)

Parameters

obj
Type: SystemObject
The newly created object.
Remarks
This can be overridden in combination with the NewCommand method to hook into the life-cycle of objects. Type safety is not possible because MonoTouch does not support virtual generic methods.
See Also