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

PExpireAt() public method

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

            return SendExpectLong(Commands.PExpireAt, key.ToUtf8Bytes(), unixTimeMs.ToUtf8Bytes()) == Success;
        }
RedisNativeClient