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

Ttl() public method

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

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