예제 #1
0
파일: Reference.cs 프로젝트: dblock/sncore
 /// <remarks/>
 public void CreateOrUpdateBugLinkAsync(string ticket, TransitBugLink buglink) {
     this.CreateOrUpdateBugLinkAsync(ticket, buglink, null);
 }
예제 #2
0
파일: Reference.cs 프로젝트: dblock/sncore
 /// <remarks/>
 public void CreateOrUpdateBugLinkAsync(string ticket, TransitBugLink buglink, object userState) {
     if ((this.CreateOrUpdateBugLinkOperationCompleted == null)) {
         this.CreateOrUpdateBugLinkOperationCompleted = new System.Threading.SendOrPostCallback(this.OnCreateOrUpdateBugLinkOperationCompleted);
     }
     this.InvokeAsync("CreateOrUpdateBugLink", new object[] {
                 ticket,
                 buglink}, this.CreateOrUpdateBugLinkOperationCompleted, userState);
 }
예제 #3
0
파일: Reference.cs 프로젝트: dblock/sncore
 public int CreateOrUpdateBugLink(string ticket, TransitBugLink buglink) {
     object[] results = this.Invoke("CreateOrUpdateBugLink", new object[] {
                 ticket,
                 buglink});
     return ((int)(results[0]));
 }