HttpContext.Current 和 ProcessRequest(HttpContext context) 是否相等?
我正在使用 httphandler。 ProcessRequest 中传递的 HttpContext 是否引用 HttpContext.Current ?使用它们中的任何一个有什么区别吗?
I am using httphandler. Is the HttpContext
which is passed in ProcessRequest referencing HttpContext.Current
? Are there any differences using any of them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,两者代表同一个对象。就我个人而言,我更喜欢使用作为参数传递的参数,而不是静态的 HttpContext.Current 。
Yes, both represent the same object. Personally I prefer to use the one passed as argument in contrast to the static
HttpContext.Current
.理论上,您可以传入任何 HttpContext 并处理它。但是,正常的方法是处理正在使用的上下文,或 HttpContext.Current。因此,您很可能会使用 HttpContext.Current,以便处理当前用于正在运行的 Web 应用程序的 HttpContext。
You could, theoretically, pass in any HttpContext and process it. But, the normal methodology is processing the context in use, or HttpContext.Current. So, more than likely you will use HttpContext.Current so you process the HttpContext you are currently using for a running web application.