Simply, what is the difference between HybridHttpOrThreadLocalScoped & HttpContextScoped?
views:
153answers:
1
+2
A:
HttpContext always uses HttpContext (and fails if not running within a web request). HybridHttpOrThreadLocalScoped uses the HttpContext when available - if not, it falls back to caching per thread.
Joshua Flanagan
2010-06-10 21:16:57