/// <remarks/> public void AddScheduleHistoryAsync(ESB_SCHD_HISTORY history, object userState) { if ((this.AddScheduleHistoryOperationCompleted == null)) { this.AddScheduleHistoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddScheduleHistoryOperationCompleted); } this.InvokeAsync("AddScheduleHistory", new object[] { history }, this.AddScheduleHistoryOperationCompleted, userState); }
private void AfterCall() { try { endTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"); SchedulerService ss = new SchedulerService(); ESB_SCHD_HISTORY history = new ESB_SCHD_HISTORY(); history.BEGIN_TIME = beginTime; history.CALL_MEMO = callMemo; history.CALL_STATUS = callStatus; history.END_TIME = endTime; history.SCHD_ID = schedID; ss.AddScheduleHistory(history); } catch (Exception ex) { _log.Error("添加作业历史记录 失败! 错误信息:" + ex.Message); } }
/// <remarks/> public void AddScheduleHistoryAsync(ESB_SCHD_HISTORY history) { this.AddScheduleHistoryAsync(history, null); }
public void AddScheduleHistory(ESB_SCHD_HISTORY history) { this.Invoke("AddScheduleHistory", new object[] { history }); }
/// <remarks/> public void AddScheduleHistoryAsync(ESB_SCHD_HISTORY history, object userState) { if ((this.AddScheduleHistoryOperationCompleted == null)) { this.AddScheduleHistoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddScheduleHistoryOperationCompleted); } this.InvokeAsync("AddScheduleHistory", new object[] { history}, this.AddScheduleHistoryOperationCompleted, userState); }
public void AddScheduleHistory(ESB_SCHD_HISTORY history) { this.Invoke("AddScheduleHistory", new object[] { history}); }