gpt4 book ai didi

asp.net - 调试请求超时 (System.Web.HttpException)

转载 作者:行者123 更新时间:2023-12-01 06:42:06 25 4
gpt4 key购买 nike

根据MSDN关于 system.web httpRuntime executionTimeout:

This time-out applies only if the debug attribute in the compilation element is
False. Therefore, if the debug attribute is True, you do not have to set this
attribute to a large value in order to avoid application shutdown while you are
debugging.

对于大多数调试来说,这是一个很棒的功能,因为它使请求在调试期间保持事件状态。如果我想自己调试超时错误怎么办?!无论我在任何地方设置什么超时属性,.NET 似乎都允许无限时间,所以我从不捕获要调试的异常!

最佳答案

如果您能够在本地生成长时间运行的执行,只需转到“调试”菜单,然后选择“全部中断”。然后您可以使用 Debug -> Windows -> Threads View 查看所有事件线程。您可能能够确定需要这么长时间的原因。

或者,您可以设置 Debug=false;然后将 Visual Studio 附加到您的进程,并将其设置为在抛出 ThreadAbortExceptions 实例时中断。

或者,您可以将 DebugDiag 设置为 capture a dump file当检测到长时间运行时。您可以使用 WinDbg (tough) 或 Visual Studio 2010 及更高版本来加载这些转储文件并检查程序的运行状态。

最后,您可以尝试反射性地更改 RequestTimeoutManager 类的行为,该类定期调用 TimeoutIfNeeded(DateTime now)。但是,我无法轻易地看到一种方法来改变它以使用 debug=false 的行为。

关于asp.net - 调试请求超时 (System.Web.HttpException),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9468158/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com