WikiFunctions.Tools.IsRedirect C# (CSharp) Method

IsRedirect() public static method

Tests article to see if it is a redirect
public static IsRedirect ( string articletext ) : bool
articletext string The article text
return bool
        public static bool IsRedirect(string articletext)
        {
            return (RedirectTarget(articletext).Length > 0);
        }
Tools