Ejemplo n.º 1
0
 /// <remarks/>
 public void FinishPendingJobByJobIDAsync(string JobID, HandleResult JobHandleResult, int NotifyChannel, string NotifyUserIDs, string NotifyTitle, string NotifyContent, short IsAcceptResponse) {
     this.FinishPendingJobByJobIDAsync(JobID, JobHandleResult, NotifyChannel, NotifyUserIDs, NotifyTitle, NotifyContent, IsAcceptResponse, null);
 }
Ejemplo n.º 2
0
 /// <remarks/>
 public void FinishPendingJobByJobIDAsync(string JobID, HandleResult JobHandleResult, int NotifyChannel, string NotifyUserIDs, string NotifyTitle, string NotifyContent, short IsAcceptResponse, object userState) {
     if ((this.FinishPendingJobByJobIDOperationCompleted == null)) {
         this.FinishPendingJobByJobIDOperationCompleted = new System.Threading.SendOrPostCallback(this.OnFinishPendingJobByJobIDOperationCompleted);
     }
     this.InvokeAsync("FinishPendingJobByJobID", new object[] {
                 JobID,
                 JobHandleResult,
                 NotifyChannel,
                 NotifyUserIDs,
                 NotifyTitle,
                 NotifyContent,
                 IsAcceptResponse}, this.FinishPendingJobByJobIDOperationCompleted, userState);
 }
Ejemplo n.º 3
0
 public bool FinishPendingJobByJobID(string JobID, ref HandleResult JobHandleResult, int NotifyChannel, string NotifyUserIDs, string NotifyTitle, string NotifyContent, short IsAcceptResponse) {
     object[] results = this.Invoke("FinishPendingJobByJobID", new object[] {
                 JobID,
                 JobHandleResult,
                 NotifyChannel,
                 NotifyUserIDs,
                 NotifyTitle,
                 NotifyContent,
                 IsAcceptResponse});
     JobHandleResult = ((HandleResult)(results[1]));
     return ((bool)(results[0]));
 }