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

HVals() public method

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

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