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)
Syntaxprotected virtual void OnInstanceCreated(
Object obj
)
Protected Overridable Sub OnInstanceCreated (
obj As Object
)
protected:
virtual void OnInstanceCreated(
Object^ obj
)
abstract OnInstanceCreated :
obj : Object -> unit
override OnInstanceCreated :
obj : Object -> unit 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