5 instantiations of TransactionAbortedException
System.Transactions.Local (5)
System\Transactions\TransactionException.cs (1)
171return new TransactionAbortedException(message, innerException);
System\Transactions\TransactionState.cs (4)
3004throw new TransactionAbortedException(tx._innerException, tx.DistributedTxId); 3009throw new TransactionAbortedException(tx._innerException, tx.DistributedTxId); 3036throw new TransactionAbortedException(tx._innerException, tx.DistributedTxId); 4108throw 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); 2968throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 2974throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 2980throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 3030throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 3042throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 4069throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 4074throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 4079throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 4103throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId); 4113throw TransactionAbortedException.Create(SR.TransactionAborted, tx._innerException, tx.DistributedTxId);
System\Transactions\VolatileEnlistmentMultiplexing.cs (2)
263catch (TransactionAbortedException e) 354catch (TransactionAbortedException e)