OpenArticleInBrowser() public static method

public static OpenArticleInBrowser ( string title ) : void
title string
return void
        public void OpenPageInBrowser(string title)
        {
            if (!Variables.UsingSecure)
            {
                string url = ArticleUrl.Replace("$1", Tools.WikiEncode(title));

                Tools.OpenURLInBrowser(url);
            }
            else
            {
                Tools.OpenArticleInBrowser(title);
            }
        }
示例#2
0
 public void OpenPageInBrowser(string title)
 {
     Tools.OpenArticleInBrowser(title);
 }