我正在使用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; 没有出现在缓存中。
我需要帮助