Exemplo n.º 1
0
 public PluginEventArgs(PluginProgress progress, string message, Exception raisedException)
 {
     this.progress        = progress;
     this.message         = message;
     this.raisedException = raisedException;
 }
Exemplo n.º 2
0
 public PluginEventArgs(PluginProgress progress)
     : this(progress, null, null)
 {
 }
 public PluginEventArgs(PluginProgress progress, string message, Exception raisedException)
 {
     this.progress = progress;
     this.message = message;
     this.raisedException = raisedException;
 }
Exemplo n.º 4
0
 private void Progress(int totalBytes, double pctComplete, double transferRate)
 {
     PluginProgress process = new PluginProgress(totalBytes,pctComplete,transferRate);
     EventProcessing(this, new PluginEventArgs(process));
 }
 public PluginEventArgs(PluginProgress progress)
     : this(progress,null,null)
 {
 }