ASP.NET HttpServerUtility.Transfer 如何破坏控制流?

发布于 2024-09-25 14:25:16 字数 269 浏览 4 评论 0原文

我所说的“如何”是指“通过什么机制”而不是“达到什么效果”。调用 Server.Transfer("...");。在语言运行时级别,这是如何发生的?它是否抛出异常或触发中止线程的事件?我只是好奇。此模式的其他示例(调用方法来终止执行)还有哪些?

By "how does" I mean "by what mechanism" not "to what effect". Control doesn't return to the calling method after you call Server.Transfer("...");. At the language runtime level, how does this happen? Does it throw an exception or trigger something that aborts the thread? I'm just curious. What are other examples of this pattern (calling a method to terminate execution)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谎言 2024-10-02 14:25:16

它最终调用 End 抛出一个 ThreadAbortException 来终止当前的执行线程。请参阅此处的文档

It eventually calls End which throws a ThreadAbortException that terminates the current thread of execution. See the documentation here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文