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