我是Azure / blob存储等的新手。
我需要使用rest api从blob读取文件。
我想使用eTag在本地缓存它,然后只读取文件
如果etag已更改。
如果Etag不是检查数据是否已更改的正确方法,请提出建议?
我注意到我可以读取文件,但是eTag始终为空。
我在做什么错了?
private const string EtagKey = "myEtag";
private readonly string xmlFilename
= Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData),
"MyFile.xml");
//get etag from cache if there
public string CachedEtagVersion => Preferences.Get(EtagKey, string.Empty);
private async Task<string> GetFileFromCloud()
{
using (var httpClient = new HttpClient())
{
if (!string.IsNullOrEmpty(CachedEtagVersion))
{
httpClient.DefaultRequestHeaders.Add("If-None-Match", CachedEtagVersion);
}
var response = await httpClient.GetAsync("https://mybloburl/XmlFiles/Myfile.xml");
string xmlFileContent;
if (response.StatusCode == HttpStatusCode.NotModified)
{
xmlFileContent = ReadFromCache();
}
else
{
xmlFileContent = await response.Content.ReadAsStringAsync();
}
//response.Headers.ETag always NULL WHY??????**
UpdateLocalCache(response.Headers.ETag, xmlFileContent);
return xmlFileContent;
}
}
private void UpdateLocalCache(EntityTagHeaderValue eTag, string xmlFileContent)
{
if (eTag == null || CachedEtagVersion == eTag.Tag) return;
//cache the etag it on the device using xam essentials
Preferences.Set(EtagKey, eTag.Tag);
File.WriteAllText(xmlFilename, xmlFileContent);
}
private string ReadFromCache()
{
if (!File.Exists(xmlFilename)) return string.Empty;
return File.ReadAllText(xmlFilename);
}
答案 0 :(得分:0)