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




message
A message that describes the current exception.
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 message As String, _
   ByVal persistent As Object, _
   ByVal storagePersistent As Object _
)
Visual Basic (Usage)Copy Code
Dim message As String
Dim persistent As Object
Dim storagePersistent As Object
 
Dim instance As ConcurrencyException(message, persistent, storagePersistent)
C# 
public ConcurrencyException( 
   string message,
   object persistent,
   object storagePersistent
)
Managed Extensions for C++ 
public: ConcurrencyException( 
   string* message,
   Object* persistent,
   Object* storagePersistent
)
C++/CLI 
public:
ConcurrencyException( 
   String^ message,
   Object^ persistent,
   Object^ storagePersistent
)

Parameters

message
A message that describes the current exception.
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