.net - What is RequestCacheLevel.BypassCache internally? -
the documentation on requestcachelevel.bypasscache doesn't explain on internal working of setting httpwebrequest. questions have on it:
- what cache refering to?
- a previous comment implies shares internet explorer?
- is setting adding cache control headers?
- how compare
nocachenostore&reloadset headers? - if want ensure (as possible client side) content not come cache best option?
to answer own question:
httpwebrequestmake use of ie cache ,requestcachelevel.bypasscacherefering cache.- the setting adding cache control headers
- compared
nocachenostoreboth avoid cache, load cache if future request there.reloadsimilar headers allow proxies return cache tells proxies ignore cache too. - yes, best option ;)
Comments
Post a Comment