CompensatorOptions Enumeration
.NET Framework 2.0
Specifies flags that control which phases of transaction completion should be received by the Compensating Resource Manager (CRM) Compensator, and whether recovery should fail if questionable transactions remain after recovery has been attempted.
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.EnterpriseServices.CompensatingResourceManagerAssembly: System.EnterpriseServices (in system.enterpriseservices.dll)
'Declaration <SerializableAttribute> _ <FlagsAttribute> _ Public Enumeration CompensatorOptions 'Usage Dim instance As CompensatorOptions
/** @attribute SerializableAttribute() */ /** @attribute FlagsAttribute() */ public enum CompensatorOptions
SerializableAttribute FlagsAttribute public enum CompensatorOptions
The following code example demonstrates the use of this enumeration.
' Create a new clerk using the AccountCompensator class. Dim clerk As New Clerk(GetType(AccountCompensator), "An account transaction compensator", CompensatorOptions.AllPhases)
// Create a new clerk using the AccountCompensator class.
Clerk clerk = new Clerk(AccountCompensator.class.ToType(),
"An account transaction compensator",
CompensatorOptions.AllPhases);
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: