我正在测试下面列出的 app.config 中的选项是否应用于应用程序中的所有事务。
<system.transactions>
<defaultSettings timeout="00:05:00" />
</system.transactions>
事务通过以下方式使用事务范围定义
using (TransactionScope transactionScope = new TransactionScope(TransactionScopeOption.Required))
是否可以找出事务范围创建事务的超时时间?