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

Expire() public method

public Expire ( byte key, int seconds ) : bool
key byte
seconds int
return bool
        public bool Expire(byte[] key, int seconds)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            return SendExpectLong(Commands.Expire, key, seconds.ToUtf8Bytes()) == Success;
        }

Same methods

RedisNativeClient::Expire ( string key, int seconds ) : bool
RedisNativeClient