Exemplo n.º 1
0
 public void ProcessItems(int threadCount, Action <string, Exception> callback)
 {
     Task.Factory.StartNew(() => m_fileUploadManager.ProcessAllItems(threadCount, callback));
 }
Exemplo n.º 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));
 }