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

DecrBy() public method

public DecrBy ( string key, int count ) : long
key string
count int
return long
        public long DecrBy(string key, int count)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            return SendExpectLong(Commands.DecrBy, key.ToUtf8Bytes(), count.ToUtf8Bytes());
        }
RedisNativeClient