public void ReportBug(Bug bug) { this.Invoke("ReportBug", new object[] { bug }); }
/// <remarks/> public System.IAsyncResult BeginReportBug(Bug bug, System.AsyncCallback callback, object asyncState) { return(this.BeginInvoke("ReportBug", new object[] { bug }, callback, asyncState)); }
/// <remarks/> public void ReportBugAsync(Bug bug) { this.ReportBugAsync(bug, null); }
/// <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); }
/// <remarks/> public System.IAsyncResult BeginReportBug(Bug bug, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("ReportBug", new object[] { bug}, callback, asyncState); }
public void ReportBug(Bug bug) { this.Invoke("ReportBug", new object[] { bug}); }