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

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

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

                    return result;
                }

Same methods

Cache.Shared.Hashes::GetAll ( RedisKey key ) : Task