Akavache崩溃Android应用程序

时间:2017-05-03 15:21:26

标签: xamarin xamarin.android akavache

我正在使用Xamarin.Forms并使用此方法来获取我的用户对象

    public static async Task<Object> GetCurrentUser()
    {
        try
        {
            return await BlobCache.UserAccount.GetObject<Object>("NewUser").FirstOrDefaultAsync();
        }
        catch (KeyNotFoundException)
        {
            return null;
        }
    }

该代码在我的iOS模拟器上运行良好,但是在这个错误

的情况下继续崩溃
  

System.Collections.Generic.KeyNotFoundException给定的键&#39; NewUser&#39;   没有出现在缓存中。

我需要帮助

0 个答案:

没有答案