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

PSetEx() public method

public PSetEx ( string key, long expireInMs, byte value ) : void
key string
expireInMs long
value byte
return void
        public void PSetEx(string key, long expireInMs, byte[] value)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            SendExpectSuccess(Commands.PSetEx, key.ToUtf8Bytes(), expireInMs.ToUtf8Bytes(), value);
        }
RedisNativeClient