AsposeVisualStudioPluginPdf.Core.AsposeComponentsManager.addToDownloadList C# (CSharp) Метод

addToDownloadList() публичный статический Метод

public static addToDownloadList ( AsposeComponent component, string urlStr, string outputFile ) : void
component AsposeComponent
urlStr string
outputFile string
Результат 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);
        }