private static async Task GetFileBDWJobAsync() { using (var client = new CSMFileServiceClient()) { Task <CSM.Service.Messages.SchedTask.ImportBDWTaskResponse> t = client.GetFileBDWAsync(WebConfig.GetWebUsername(), WebConfig.GetWebPassword(), true); CSM.Service.Messages.SchedTask.ImportBDWTaskResponse result = await t.ConfigureAwait(false); } }
private static async Task GetFileBDWJobAsync() { using (var client = new CSMFileServiceClient()) { Task <ImportBDWTaskResponse> t = client.GetFileBDWAsync(WebConfig.GetWebUsername(), WebConfig.GetWebPassword(), true); ImportBDWTaskResponse result = await t; } }
public static void GetFileBDWJobAsync() { try { Logger.Info("I:--START--"); Task <ImportBDWTaskResponse> task; using (var client = new CSMFileServiceClient()) { task = client.GetFileBDWAsync(WebConfig.GetTaskUsername(), WebConfig.GetTaskPassword()); } while (!task.IsCompleted) { Thread.Sleep(1000); } if (task.Exception != null) { Logger.InfoFormat("O:--FAILED--:Exception/{0}", task.Exception); Logger.Error("Exception occur:\n", task.Exception); // Send mail to system administrator _mailSender = TaskMailSender.GetTaskMailSender(); _mailSender.NotifyImportContactFailed(WebConfig.GetTaskEmailToAddress(), DateTime.Now, task.Exception); Thread.Sleep(5000); } else { var result = task.GetAwaiter().GetResult(); Logger.InfoFormat("O:--SUCCESS--:Task Result/{0}", result); // Send mail to system administrator SendMailTask(result); } } catch (Exception ex) { Logger.InfoFormat("O:--FAILED--:Exception/{0}", ex.Message); Logger.Error("Exception occur:\n", ex); // Send mail to system administrator _mailSender = TaskMailSender.GetTaskMailSender(); _mailSender.NotifyImportContactFailed(WebConfig.GetTaskEmailToAddress(), DateTime.Now, new AggregateException(ex)); Thread.Sleep(5000); } }