I have a problem with akavache, when I try to put something on the blob, I have an error : "Unable to reset abort because no abort was requested" I see on the debugger that is Blob.LocalMachine value is : ThreadStateException "Unable to reset abort because no abort was requested"
My code is really simple :
private async Task StoreInCache(string key, object value)
{
await BlobCache.LocalMachine.InsertObject(key, value);
}
I work on xamarin.iOS but all the code who managed my data is in Shared project. Is it the reason why he can't find the LocalMachine? Or create one on a shared project?
If I put all the code to manage the cache on my xamarin.iOS code it's not really effective because I also have a xamarin.droid version of my application...
Someone know how can I solved this?
Thank you!