Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

CacheDBO.cs 705B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. namespace iiie.CacheControl.DBO
  3. {
  4. /// <summary>
  5. /// Basic fields for data to be cached
  6. /// </summary>
  7. [Serializable]
  8. public class CacheDbo
  9. {
  10. /// <summary>
  11. /// The content type of the data
  12. /// </summary>
  13. public string ContentType { get; set; }
  14. /// <summary>
  15. /// The data itself
  16. /// </summary>
  17. public byte[] Content { get; set; }
  18. /// <summary>
  19. /// The e tag to identify cache
  20. /// </summary>
  21. public string ETag { get; set; }
  22. /// <summary>
  23. /// The date to data was first cached
  24. /// </summary>
  25. public DateTime Date { get; set; }
  26. }
  27. }