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

HExists() public method

public HExists ( string hashId, byte key ) : long
hashId string
key byte
return long
        public long HExists(string hashId, byte[] key)
        {
            AssertHashIdAndKey(hashId, key);

            return SendExpectLong(Commands.HExists, hashId.ToUtf8Bytes(), key);
        }
RedisNativeClient