Ejemplo n.º 1
0
 /// <summary>
 /// Passes the internal event in the protocol handler to the outward-facing
 /// event.
 /// </summary>
 /// <param name="sender">Sender.</param>
 /// <param name="e">E.</param>
 private void OnModuleInstallationFailed(object sender, ModuleInstallationFailedArgs e)
 {
     if (GameDownloadFailed != null)
     {
         GameDownloadFailed(sender, e);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Passes the internal event in the protocol handler to the outward-facing
 /// event.
 /// </summary>
 /// <param name="sender">Sender.</param>
 /// <param name="e">E.</param>
 private void OnModuleInstallationFailed(object sender, ModuleInstallationFailedArgs e)
 {
     this.DownloadFailed?.Invoke(sender, e);
 }