14 references to OletxTransactionOutcome
System.Transactions.Local (14)
System\Transactions\DtcProxyShim\ResourceManagerShim.cs (5)
37
public void Reenlist(byte[] prepareInfo, out
OletxTransactionOutcome
outcome)
47
OletxXactStat.XACTSTAT_ABORTED =>
OletxTransactionOutcome
.Aborted,
48
OletxXactStat.XACTSTAT_COMMITTED =>
OletxTransactionOutcome
.Committed,
49
_ =>
OletxTransactionOutcome
.Aborted
54
outcome =
OletxTransactionOutcome
.NotKnownYet;
System\Transactions\Oletx\OletxResourceManager.cs (9)
348
OletxTransactionOutcome
outcome =
OletxTransactionOutcome
.NotKnownYet;
380
if (
OletxTransactionOutcome
.Committed == outcome)
384
else if (
OletxTransactionOutcome
.Aborted == outcome)
599
OletxTransactionOutcome
localOutcome =
OletxTransactionOutcome
.NotKnownYet;
618
if (localOutcome ==
OletxTransactionOutcome
.NotKnownYet)
680
if (localOutcome ==
OletxTransactionOutcome
.Committed)
691
else if (localOutcome ==
OletxTransactionOutcome
.Aborted)