Tagged Questions

8
votes
3answers
677 views

Cache.Add absolute expiration - UTC based or not?

The examples for Cache.Add uses DateTime.Now.Add to compute the expiration, i.e. it passes: DateTime.Now.AddSeconds(60) as the value of the absoluteExpiration parameter. I'd have thought that ...
0
votes
0answers
99 views

.NET Web Caching

I am looking to only download a new image from server if the image changes with an application and looking for some help. I know I can roll my own class that could check the timestamp of the header ...