AsposeVisualStudioPluginPdf.Core.AsposeComponentsManager.storeReleaseNotes C# (CSharp) Method

storeReleaseNotes() public method

public storeReleaseNotes ( AsposeComponent component ) : void
component AsposeComponent
return void
        public void storeReleaseNotes(AsposeComponent component)
        {
            string localPath = getLibaryDownloadPath() + component.get_name() + ".htm";
            try
            {
                System.IO.File.WriteAllText(localPath, component.get_changeLog());
            }
            catch (FileNotFoundException e)
            {

            }
            catch (Exception e)
            {

            }

        }