Beispiel #1
0
 /// <remarks/>
 public void CreateOrUpdateBugResolutionAsync(string ticket, TransitBugResolution resolution) {
     this.CreateOrUpdateBugResolutionAsync(ticket, resolution, null);
 }
Beispiel #2
0
 /// <remarks/>
 public void CreateOrUpdateBugResolutionAsync(string ticket, TransitBugResolution resolution, object userState) {
     if ((this.CreateOrUpdateBugResolutionOperationCompleted == null)) {
         this.CreateOrUpdateBugResolutionOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateBugResolutionOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateBugResolution", new object[] {
                 ticket,
                 resolution}, this.CreateOrUpdateBugResolutionOperationCompleted, userState);
 }
Beispiel #3
0
 public int CreateOrUpdateBugResolution(string ticket, TransitBugResolution resolution) {
     object[] results = this.Invoke("CreateOrUpdateBugResolution", new object[] {
                 ticket,
                 resolution});
     return ((int)(results[0]));
 }