Ejemplo n.º 1
0
        public virtual void OnProgress(ProgressInfo progressInfo)
        {
            ProgressHandler handler = this.Progress;

            if (handler != null)
            {
                handler(progressInfo);
            }
        }
Ejemplo n.º 2
0
        protected virtual void OnProgress(ProgressInfo progressInfo)
        {
            UpdateProgressHandler handler = this.Progress;

            if (handler != null)
            {
                handler(progressInfo);
            }
        }
Ejemplo n.º 3
0
 private void installer_Progress(ProgressInfo progressInfo)
 {
     this.Clients.All.updateInstallationNotification(progressInfo.Timestamp, progressInfo.Description,
         progressInfo.Message);
 }