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

Decr() public method

public Decr ( string key ) : long
key string
return long
        public long Decr(string key)
        {
            if (key == null)
                throw new ArgumentNullException("key");

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