WikiFunctions.Tools.OpenArticleHistoryInBrowser C# (CSharp) Method

OpenArticleHistoryInBrowser() public static method

Opens the specified article's history in the browser
public static OpenArticleHistoryInBrowser ( string title ) : void
title string
return void
        public static void OpenArticleHistoryInBrowser(string title)
        {
            OpenURLInBrowser(Variables.GetArticleHistoryURL(title));
        }

Usage Example

        public void OpenPageHistoryInBrowser(string title)
        {
            if (!Variables.UsingSecure)
            {
                string url = ArticleUrl.Replace("$1", title);

                Tools.OpenURLInBrowser(url + "?action=history");
            }
            else
            {
                Tools.OpenArticleHistoryInBrowser(title);
            }
        }
All Usage Examples Of WikiFunctions.Tools::OpenArticleHistoryInBrowser
Tools