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

HKeys() public method

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

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