调试应用程序时如何定义事务超时
作者:互联网
我正在测试下面列出的app.config中的选项是否适用于应用程序中的所有事务.
<system.transactions>
<defaultSettings timeout="00:05:00" />
</system.transactions>
使用事务范围通过以下方式定义事务
using (TransactionScope transactionScope = new TransactionScope(TransactionScopeOption.Required))
是否可以找出由事务范围创建的事务超时时间?
解决方法:
您可以使用transactionoptions.timeout进行操作,请参阅:
编辑
交易范围没有任何公共属性,因此您将无法获得任何信息.您只能通过构造函数访问超时.
http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx
标签:transactions,timeout,transactionscope,c,net 来源: https://codeday.me/bug/20191210/2102195.html