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

addToDownloadList() public static method

public static addToDownloadList ( AsposeComponent component, string urlStr, string outputFile ) : void
component AsposeComponent
urlStr string
outputFile string
return void
        public static void addToDownloadList(AsposeComponent component, string urlStr, string outputFile)
        {
            AsyncDownload asyncDownload = new AsyncDownload();
            asyncDownload.Url = urlStr;
            asyncDownload.LocalPath = getLibaryDownloadPath() + outputFile;
            asyncDownload.Component = component;
            AsyncDownloadList.list.Add(asyncDownload);
        }