CompensatorOptions Enumeration
.NET Framework 3.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)
The following code example demonstrates the use of this enumeration.
// Create a new clerk using the AccountCompensator class. Clerk clerk = new Clerk(typeof(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);
Community Additions
ADD
Show: