ASP.NET HttpServerUtility.Transfer 如何破坏控制流?
我所说的“如何”是指“通过什么机制”而不是“达到什么效果”。调用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它最终调用
End
抛出一个ThreadAbortException
来终止当前的执行线程。请参阅此处的文档It eventually calls
End
which throws aThreadAbortException
that terminates the current thread of execution. See the documentation here