5 instantiations of TransactionAbortedException
System.Transactions.Local (5)
System\Transactions\TransactionException.cs (1)
171
return new
TransactionAbortedException
(message, innerException);
System\Transactions\TransactionState.cs (4)
3001
throw new
TransactionAbortedException
(tx._innerException, tx.DistributedTxId);
3006
throw new
TransactionAbortedException
(tx._innerException, tx.DistributedTxId);
3033
throw new
TransactionAbortedException
(tx._innerException, tx.DistributedTxId);
4105
throw new
TransactionAbortedException
(tx._innerException, tx.DistributedTxId);
19 references to TransactionAbortedException
netstandard (1)
netstandard.cs (1)
2183
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Transactions.
TransactionAbortedException
))]
System.Transactions (1)
System.Transactions.cs (1)
24
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Transactions.
TransactionAbortedException
))]
System.Transactions.Local (17)
System\Transactions\TransactionException.cs (3)
154
internal static new
TransactionAbortedException
Create(string? message, Exception? innerException, Guid distributedTxId)
160
return
TransactionAbortedException
.Create(messagewithTxId, innerException);
163
internal static new
TransactionAbortedException
Create(string? message, Exception? innerException)
System\Transactions\TransactionState.cs (12)
1496
private static
TransactionAbortedException
CreateTransactionAbortedException(InternalTransaction tx)
1498
return
TransactionAbortedException
.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId);
2965
throw
TransactionAbortedException
.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId);
2971
throw
TransactionAbortedException
.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId);
2977
throw
TransactionAbortedException
.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId);
3027
throw
TransactionAbortedException
.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId);
3039
throw
TransactionAbortedException
.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId);
4066
throw
TransactionAbortedException
.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId);
4071
throw
TransactionAbortedException
.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId);
4076
throw
TransactionAbortedException
.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId);
4100
throw
TransactionAbortedException
.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId);
4110
throw
TransactionAbortedException
.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId);
System\Transactions\VolatileEnlistmentMultiplexing.cs (2)
263
catch (
TransactionAbortedException
e)
354
catch (
TransactionAbortedException
e)