I have this etag header from the web server,
ETag | 1347613725000
This is a png image, but I have no idea on how to check if the file is expired.
Right now I'm hashing the stream with this code:
MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider();
byte[] hash = md5.ComputeHash(value);
result = BitConverter.ToString(hash).Replace("-", string.Empty).ToLower();
But the result of this code is: e0d9ddc1c72ade0a1924dddf68c8c12e
Thanks.