AutoWikiBrowser.Plugins.Kingbotk.PluginBase.ReadXMLRedirects C# (CSharp) Method

ReadXMLRedirects() private method

private ReadXMLRedirects ( XmlTextReader reader ) : void
reader System.Xml.XmlTextReader
return void
        internal virtual void ReadXMLRedirects(XmlTextReader reader)
        {
            // For compiled template plugins, a Redirect string read in from XML is for backup use only if getting from WP fails
            // Generic templates already support AlternateNames property so will override this
            string redirs = PluginManager.XMLReadString(reader, RedirectsParm, LastKnownGoodRedirects);

            if (!string.IsNullOrEmpty(redirs))
                LastKnownGoodRedirects = redirs;
        }