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

Move() public method

public Move ( string key, int db ) : bool
key string
db int
return bool
        public bool Move(string key, int db)
        {
            if (key == null)
                throw new ArgumentNullException("key");

            return SendExpectLong(Commands.Move, key.ToUtf8Bytes(), db.ToUtf8Bytes()) == Success;
        }
RedisNativeClient