T
Chili.Opf3 Send comments on this topic.
Generic OnAfterInsert Method
See Also 
Chili.Opf3.Concurrency.TimeStamp Namespace > TimeStampConcurrencyManager Class : Generic OnAfterInsert Method




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

Syntax

Visual Basic (Declaration) 
Public Sub OnAfterInsert(Of T)( _
   ByVal obj As T, _
   ByVal e As ConcurrencyManagerEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As TimeStampConcurrencyManager
Dim obj As T
Dim e As ConcurrencyManagerEventArgs
 
instance.OnAfterInsert(Of T)(obj, e)
C# 
public void OnAfterInsert<T>( 
   T obj,
   ConcurrencyManagerEventArgs e
)
Managed Extensions for C++ 
public: void OnAfterInsert<T>( 
   T obj,
   ConcurrencyManagerEventArgs* e
) 
C++/CLI 
public:
void OnAfterInsertgeneric<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