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

ExpireAt() public method

public ExpireAt ( string key, long unixTime ) : bool
key string
unixTime long
return bool
        public bool ExpireAt(string key, long unixTime)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            return SendExpectLong(Commands.ExpireAt, key.ToUtf8Bytes(), unixTime.ToUtf8Bytes()) == Success;
        }
RedisNativeClient