Ejemplo n.º 1
0
 /// <remarks/>
 public void CreateOrUpdateBugNoteAsync(string ticket, TransitBugNote bugnote) {
     this.CreateOrUpdateBugNoteAsync(ticket, bugnote, null);
 }
Ejemplo n.º 2
0
 /// <remarks/>
 public void CreateOrUpdateBugNoteAsync(string ticket, TransitBugNote bugnote, object userState) {
     if ((this.CreateOrUpdateBugNoteOperationCompleted == null)) {
         this.CreateOrUpdateBugNoteOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateBugNoteOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateBugNote", new object[] {
                 ticket,
                 bugnote}, this.CreateOrUpdateBugNoteOperationCompleted, userState);
 }
Ejemplo n.º 3
0
 public int CreateOrUpdateBugNote(string ticket, TransitBugNote bugnote) {
     object[] results = this.Invoke("CreateOrUpdateBugNote", new object[] {
                 ticket,
                 bugnote});
     return ((int)(results[0]));
 }