| RpObjectOnUpdate Method (Int32, Object) |
Should be called when the application component needs to
set the value of an attribute. It allows the server to be notified about
this modification.
Namespace:
RW.Server.Component
Assembly:
RW.Server.Component (in RW.Server.Component.dll) Version: 7.2.0.0 (7.2.0.0)
Syntax public virtual bool OnUpdate(
int attrId,
Object value
)
Public Overridable Function OnUpdate (
attrId As Integer,
value As Object
) As Boolean
public:
virtual bool OnUpdate(
int attrId,
Object^ value
)
Parameters
- attrId
- Type: SystemInt32
:
The attribute identifier. - value
- Type: SystemObject
:
The new value.
Return Value
Type:
BooleanTrue if the update is allowed, false
otherwise.
See Also