HttpRuntime vs HttpContext
What is the difference between HttpRuntime.Cache and HttpContext.Current.Cache?
Is it that HttpRuntime.Cache is available to all user sessions and HttpContext.Current.Cache only to the current user session?
I read somewhere that HttpContext.Current.Cache internally calls HttpRuntime.Cache.
|