WikiFunctions.Tools.OpenENArticleInBrowser C# (CSharp) Méthode

OpenENArticleInBrowser() public static méthode

Forces the loading of a page in En.Wiki Used for 'static' links to the english wikipedia
public static OpenENArticleInBrowser ( string title, bool userspace ) : void
title string
userspace bool
Résultat void
        public static void OpenENArticleInBrowser(string title, bool userspace)
        {
            if (userspace)
                OpenURLInBrowser("https://en.wikipedia.org/wiki/User:" + WikiEncode(title));
            else
                OpenURLInBrowser("https://en.wikipedia.org/wiki/" + WikiEncode(title));
        }
Tools