AGS.Editor.Components.HelpCommandsComponent.GetPageURL C# (CSharp) Method

GetPageURL() private method

private GetPageURL ( XmlDocument doc, string xmlElementName ) : string
doc System.Xml.XmlDocument
xmlElementName string
return string
        private string GetPageURL(XmlDocument doc, string xmlElementName)
        {
            XmlNode urlNode = doc.DocumentElement.SelectSingleNode(xmlElementName);
            return urlNode.InnerText;
        }