Air.LocalAirStorage.TryGetAsync C# (CSharp) Method

TryGetAsync() public method

Gets the specified key.
public TryGetAsync ( long key ) : Task
key long The key.
return Task
        public Task<byte[]> TryGetAsync(long key)
        {
            byte[] value;
            _store.TryGetValue(key, out value);
            return Task.FromResult(value);
        }