CacheInfo.cs
上传用户:szgaoree
上传日期:2009-01-05
资源大小:74k
文件大小:0k
源码类别:

Ajax

开发平台:

C#

  1. using System;
  2. namespace AjaxPro
  3. {
  4. /// <summary>
  5. /// Represents a cache info object for HTTP caching using ETags and Last-Modified-Since headers.
  6. /// </summary>
  7. internal class CacheInfo
  8. {
  9. private string etag;
  10. private DateTime lastMod;
  11. internal CacheInfo(string etag, DateTime lastMod)
  12. {
  13. this.etag = etag;
  14. this.lastMod = lastMod;
  15. }
  16. internal string ETag
  17. {
  18. get{ return null; }
  19. }
  20. internal DateTime LastModified
  21. {
  22. get{ return lastMod; }
  23. }
  24. }
  25. }