[]
Fills internal object derived from BasePersistableObject with values from specified bound object.
protected virtual bool ReadObject(T internalObject, object boundObject, bool raiseChanged)
Type | Name | Description |
---|---|---|
T | internalObject | |
object | boundObject | |
bool | raiseChanged | Specifies if internalObject should raise Changed event during this method call |
Type | Description |
---|---|
bool | Value indicating if bound object was changed by this method. |
Overriding method of derived class should call the base class's ReadObject method or fill BasePersistableObject properties on it's own.
Fills internal object derived from BasePersistableObject with values from specified bound object.
protected virtual bool ReadObject(T internalObject, object boundObject, bool raiseChanged, bool dirty)
Type | Name | Description |
---|---|---|
T | internalObject | |
object | boundObject | |
bool | raiseChanged | Specifies if internalObject should raise Changed event during this method call |
bool | dirty | Specifies whether an object has been changed |
Type | Description |
---|---|
bool | Value indicating if bound object was changed by this method. |
Overriding method of derived class should call the base class's ReadObject method or fill BasePersistableObject properties on it's own.