T
Chili.Opf3 Send comments on this topic.
Generic OnBeforeUpdate Method
See Also 
Chili.Opf3.Concurrency.Md5 Namespace > Md5ConcurrencyManager Class : Generic OnBeforeUpdate Method




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

Syntax

Visual Basic (Declaration) 
Public Sub OnBeforeUpdate(Of T)( _
   ByVal obj As T, _
   ByVal e As ConcurrencyManagerEventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As Md5ConcurrencyManager
Dim obj As T
Dim e As ConcurrencyManagerEventArgs
 
instance.OnBeforeUpdate(Of T)(obj, e)
C# 
public void OnBeforeUpdate<T>( 
   T obj,
   ConcurrencyManagerEventArgs e
)
Managed Extensions for C++ 
public: void OnBeforeUpdate<T>( 
   T obj,
   ConcurrencyManagerEventArgs* e
) 
C++/CLI 
public:
void OnBeforeUpdategeneric<typename T>
( 
   T obj,
   ConcurrencyManagerEventArgs^ e
) 

Parameters

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

Type Parameters

T

Exceptions

ExceptionDescription
ConcurrencyExceptionA concurrency problem has been encountered.

Requirements

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

See Also