Azure BlobStorage restapi ETag始终为null。为什么? (xamarin或任何使用blob存储的c#项目)

时间:2019-03-31 08:34:09

标签: xamarin.forms azure-blob-storage

我是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);
}

1 个答案:

答案 0 :(得分:0)

据此

https://www.michaelcrump.net/azure-tips-and-tricks88/

e标签用于乐观并发,而不是最后一次更改文件。

为此使用时间戳