T
Chili.Opf3 Send comments on this topic.
Generic OnAfterUpdate Method
See Also 
Chili.Opf3.Concurrency Namespace > IConcurrencyManager Interface : Generic OnAfterUpdate Method




obj
Persistent object that is validated.
e
EventArgs of the current routine.
Invoked after the update operation of the object.

Syntax

Visual Basic (Declaration) 
Overridable Sub OnAfterUpdate(Of T)( _
   ByVal obj As T, _
   ByVal e As ConcurrencyManagerEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As IConcurrencyManager
Dim obj As T
Dim e As ConcurrencyManagerEventArgs
 
instance.OnAfterUpdate(Of T)(obj, e)
C# 
virtual void OnAfterUpdate<T>( 
   T obj,
   ConcurrencyManagerEventArgs e
)
Managed Extensions for C++ 
virtual void OnAfterUpdate<T>( 
   T obj,
   ConcurrencyManagerEventArgs* e
) 
C++/CLI 
virtual void OnAfterUpdategeneric<typename T>
( 
   T obj,
   ConcurrencyManagerEventArgs^ e
) 

Parameters

obj
Persistent object that is validated.
e
EventArgs of the current routine.

Type Parameters

T

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also