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