5 instantiations of TransactionAbortedException
System.Transactions.Local (5)
System\Transactions\TransactionException.cs (1)
171return new TransactionAbortedException(message, innerException);
System\Transactions\TransactionState.cs (4)
3001throw new TransactionAbortedException(tx._innerException, tx.DistributedTxId); 3006throw new TransactionAbortedException(tx._innerException, tx.DistributedTxId); 3033throw new TransactionAbortedException(tx._innerException, tx.DistributedTxId); 4105throw 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)
154internal static new TransactionAbortedException Create(string? message, Exception? innerException, Guid distributedTxId) 160return TransactionAbortedException.Create(messagewithTxId, innerException); 163internal static new TransactionAbortedException Create(string? message, Exception? innerException)
System\Transactions\TransactionState.cs (12)
1496private static TransactionAbortedException CreateTransactionAbortedException(InternalTransaction tx) 1498return TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 2965throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 2971throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 2977throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 3027throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 3039throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 4066throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 4071throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 4076throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 4100throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 4110throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId);
System\Transactions\VolatileEnlistmentMultiplexing.cs (2)
263catch (TransactionAbortedException e) 354catch (TransactionAbortedException e)