If i search correctly SOSS .NET provider (4.5) does not support async/await pattern yet?
I mean NamedCacheAPI nor DotNetAPI does not provide methods like:
async NamedCache.RetrieveAsync(string id, bool acquireLock): Task<Object>;
to be able to call it:
var obj = await cache.RetrieveAsync('myid'...