VAGSuite.msiupdater.GetReleaseNotes C# (CSharp) Method

GetReleaseNotes() private method

private GetReleaseNotes ( ) : string
return string
        internal string GetReleaseNotes()
        {
            string URLString = "http://trionic.mobixs.eu/vagedcsuite/Notes.xml";
            string XMLResult = GetPageHTML(URLString, 10);
            using (StreamWriter xmlfile = new StreamWriter(Apppath + "\\Notes.xml", false, System.Text.Encoding.ASCII, 2048))
            {
                xmlfile.Write(XMLResult);
                xmlfile.Close();
            }
            return Apppath + "\\Notes.xml";
        }