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

IncrBy() public method

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

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

Same methods

RedisNativeClient::IncrBy ( string key, long count ) : long
RedisNativeClient