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

Migrate() public method

public Migrate ( string host, int port, string key, int destinationDb, long timeoutMs ) : void
host string
port int
key string
destinationDb int
timeoutMs long
return void
        public void Migrate(string host, int port, string key, int destinationDb, long timeoutMs)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            SendExpectSuccess(Commands.Migrate, host.ToUtf8Bytes(), port.ToUtf8Bytes(), key.ToUtf8Bytes(), destinationDb.ToUtf8Bytes(), timeoutMs.ToUtf8Bytes());
        }
RedisNativeClient