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

LRem() public method

public LRem ( string listId, int removeNoOfMatches, byte value ) : long
listId string
removeNoOfMatches int
value byte
return long
        public long LRem(string listId, int removeNoOfMatches, byte[] value)
        {
            if (listId == null)
                throw new ArgumentNullException("listId");

            return SendExpectLong(Commands.LRem, listId.ToUtf8Bytes(), removeNoOfMatches.ToUtf8Bytes(), value);
        }
RedisNativeClient