Move() public méthode

public Move ( string fromTitle, string toTitle, string reason ) : void
fromTitle string
toTitle string
reason string
Résultat void
Exemple #1
0
 public void Move(Wiki wiki,
                  string newTitle,
                  string reason,
                  bool moveTalk,
                  bool noRedirect)
 {
     wiki.Move(Title, newTitle, reason, wiki.Token, moveTalk, noRedirect);
 }
Exemple #2
0
 public void Move(Wiki wiki, string newTitle, string reason)
 {
     wiki.Move(Title, newTitle, reason, wiki.Token, true, false);
 }