BB.Caching.Cache.Shared.Hashes.GetAllAsync C# (CSharp) Метод

GetAllAsync() публичный статический Метод

Returns all fields and values of the hash stored at key.
http://redis.io/commands/hgetall
public static GetAllAsync ( RedisKey key ) : Task
key RedisKey /// The key. ///
Результат Task
                public static Task<HashEntry[]> GetAllAsync(RedisKey key)
                {
                    Task<HashEntry[]> result = SharedCache.Instance.GetReadConnection(key)
                        .GetDatabase(SharedCache.Instance.Db)
                        .HashGetAllAsync(key);

                    return result;
                }