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

HIncrby() public method

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

            return SendExpectLong(Commands.HIncrBy, hashId.ToUtf8Bytes(), key, incrementBy.ToString().ToUtf8Bytes());
        }

Same methods

RedisNativeClient::HIncrby ( string hashId, byte key, long incrementBy ) : long
RedisNativeClient