示例#1
0
 public void ProcessItems(int threadCount, Action <string, Exception> callback)
 {
     Task.Factory.StartNew(() => m_fileUploadManager.ProcessAllItems(threadCount, callback));
 }
示例#2
0
 public void ProcessItems(string username, string password, int threadCount, Action <string, Exception> callback)
 {
     Task.Factory.StartNew(() => m_fileUploadManager.ProcessAllItems(username, password, threadCount, callback));
 }