ServiceStack.Redis.RedisNativeClient.HGetAll C# (CSharp) Method

HGetAll() public method

public HGetAll ( string hashId ) : byte[][]
hashId string
return byte[][]
        public byte[][] HGetAll(string hashId)
        {
            if (hashId == null)
                throw new ArgumentNullException("hashId");

            return SendExpectMultiData(Commands.HGetAll, hashId.ToUtf8Bytes());
        }
RedisNativeClient