Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
TransactionStateDelegatedSubordinate.cs
Go to the documentation of this file.
1namespace System.Transactions;
2
4{
5 internal override bool PromoteDurable(InternalTransaction tx)
6 {
7 return true;
8 }
9
10 internal override void Rollback(InternalTransaction tx, Exception e)
11 {
12 if (tx._innerException == null)
13 {
14 tx._innerException = e;
15 }
16 tx.PromotedTransaction.Rollback();
18 }
19}
static TransactionStatePromotedAborted TransactionStatePromotedAborted