Пример #1
0
 /// <remarks/>
 public void CreateOrUpdateBugTypeAsync(string ticket, TransitBugType type) {
     this.CreateOrUpdateBugTypeAsync(ticket, type, null);
 }
Пример #2
0
 /// <remarks/>
 public void CreateOrUpdateBugTypeAsync(string ticket, TransitBugType type, object userState) {
     if ((this.CreateOrUpdateBugTypeOperationCompleted == null)) {
         this.CreateOrUpdateBugTypeOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateBugTypeOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateBugType", new object[] {
                 ticket,
                 type}, this.CreateOrUpdateBugTypeOperationCompleted, userState);
 }
Пример #3
0
 public int CreateOrUpdateBugType(string ticket, TransitBugType type) {
     object[] results = this.Invoke("CreateOrUpdateBugType", new object[] {
                 ticket,
                 type});
     return ((int)(results[0]));
 }