Difference between WebOperationContext.current and HttpContext.Current

随声附和 提交于 2019-11-29 17:36:07

问题


I develop web and mobile applications for my customers. In my current architecture, many resources are shared between the web access and mobile access. An aspx page can be shown on web and be called to a web view in a mobile app. My question is :

What is the difference between WebOperationContext.Current and HttpContext.Current object?

From my understanding it is the same object, but I noticed that WebOperationContext.Current is null in some cases and I don't understand why.


回答1:


WebOperationContext is typically used in a WCF REST method so that method can access the incoming request and outgoing response.

HttpContext is typically used in an ASP.NET WebForms page or web method for ASMX Web Service, when incoming request and outgoing response can be accessed.

They are designed for different project types (WCF REST/ASP.NET WebForms) so you should not use them in a wrong project type.

About when the value of .Current is null, that's even more complicated. Even if you are calling this property in the correct project type, you need to make sure the call is made on a proper thread. Only on the thread that handles the request (which also sends out the response) you can access the current context. On any other threads (background threads, or new threads created by you) you get null. This has been known for years but beginners still get it wrong sometimes.



来源:https://stackoverflow.com/questions/18747581/difference-between-weboperationcontext-current-and-httpcontext-current

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!