public virtual void OnProgress(ProgressInfo progressInfo) { ProgressHandler handler = this.Progress; if (handler != null) { handler(progressInfo); } }
protected virtual void OnProgress(ProgressInfo progressInfo) { UpdateProgressHandler handler = this.Progress; if (handler != null) { handler(progressInfo); } }
private void installer_Progress(ProgressInfo progressInfo) { this.Clients.All.updateInstallationNotification(progressInfo.Timestamp, progressInfo.Description, progressInfo.Message); }