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

Restore() public method

public Restore ( string key, long expireMs, byte dumpValue ) : byte[]
key string
expireMs long
dumpValue byte
return byte[]
        public byte[] Restore(string key, long expireMs, byte[] dumpValue)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            return SendExpectData(Commands.Restore, key.ToUtf8Bytes(), expireMs.ToUtf8Bytes(), dumpValue);
        }
RedisNativeClient