Move() 공개 메소드

public Move ( string fromTitle, string toTitle, string reason ) : void
fromTitle string
toTitle string
reason string
리턴 void
예제 #1
0
 public void Move(Wiki wiki,
                  string newTitle,
                  string reason,
                  bool moveTalk,
                  bool noRedirect)
 {
     wiki.Move(Title, newTitle, reason, wiki.Token, moveTalk, noRedirect);
 }
예제 #2
0
 public void Move(Wiki wiki, string newTitle, string reason)
 {
     wiki.Move(Title, newTitle, reason, wiki.Token, true, false);
 }