Exemplo n.º 1
0
 public void ReportBug(Bug bug)
 {
     this.Invoke("ReportBug", new object[] {
         bug
     });
 }
Exemplo n.º 2
0
 /// <remarks/>
 public System.IAsyncResult BeginReportBug(Bug bug, System.AsyncCallback callback, object asyncState)
 {
     return(this.BeginInvoke("ReportBug", new object[] {
         bug
     }, callback, asyncState));
 }
Exemplo n.º 3
0
 /// <remarks/>
 public void ReportBugAsync(Bug bug)
 {
     this.ReportBugAsync(bug, null);
 }
Exemplo n.º 4
0
 /// <remarks/>
 public void ReportBugAsync(Bug bug, object userState) {
     if ((this.ReportBugOperationCompleted == null)) {
         this.ReportBugOperationCompleted = new System.Threading.SendOrPostCallback(this.OnReportBugOperationCompleted);
     }
     this.InvokeAsync("ReportBug", new object[] {
                 bug}, this.ReportBugOperationCompleted, userState);
 }
Exemplo n.º 5
0
 /// <remarks/>
 public void ReportBugAsync(Bug bug) {
     this.ReportBugAsync(bug, null);
 }
Exemplo n.º 6
0
 /// <remarks/>
 public System.IAsyncResult BeginReportBug(Bug bug, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("ReportBug", new object[] {
                 bug}, callback, asyncState);
 }
Exemplo n.º 7
0
 public void ReportBug(Bug bug) {
     this.Invoke("ReportBug", new object[] {
                 bug});
 }