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

PTtl() public method

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

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