Chili.Opf3 Send comments on this topic.
ConcurrencyException Constructor(Object,Object)
See Also 
Chili.Opf3.Concurrency Namespace > ConcurrencyException Class > ConcurrencyException Constructor : ConcurrencyException Constructor(Object,Object)




persistent
The persistent object that caused the exception.
storagePersistent
The persistent object that has been reloaded from the storage to check for concurrency problems.
Creates a new instance of the ConcurrencyException Class.

Syntax

Visual Basic (Declaration) 
Public Function New( _
   ByVal persistent As Object, _
   ByVal storagePersistent As Object _
)
Visual Basic (Usage)Copy Code
Dim persistent As Object
Dim storagePersistent As Object
 
Dim instance As ConcurrencyException(persistent, storagePersistent)
C# 
public ConcurrencyException( 
   object persistent,
   object storagePersistent
)
Managed Extensions for C++ 
public: ConcurrencyException( 
   Object* persistent,
   Object* storagePersistent
)
C++/CLI 
public:
ConcurrencyException( 
   Object^ persistent,
   Object^ storagePersistent
)

Parameters

persistent
The persistent object that caused the exception.
storagePersistent
The persistent object that has been reloaded from the storage to check for concurrency problems.

Requirements

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

See Also