示例#1
0
 private void OnFilesValidationFailed(object sender, UpdaterActionEventArgs e)
 {
     if (null != FilesValidationFailed)
     {
         FilesValidationFailed(this, e);
     }
 }
示例#2
0
 private void OnManifestValidationFailed(object sender, UpdaterActionEventArgs e)
 {
     if (null != ManifestValidationFailed)
     {
         ManifestValidationFailed(this, e);
     }
 }
示例#3
0
 private void OnDownloadCompleted(object sender, UpdaterActionEventArgs e)
 {
     if (null != DownloadCompleted)
     {
         DownloadCompleted(this, e);
     }
 }
示例#4
0
 private void OnUpdateAvailable(object sender, UpdaterActionEventArgs e)
 {
     if (null != UpdateAvailable)
     {
         UpdateAvailable(this, e);
     }
 }
示例#5
0
 private void OnServerManifestDownloaded(object sender, UpdaterActionEventArgs e)
 {
     if (null != ServerManifestDownloaded)
     {
         ServerManifestDownloaded(this, e);
     }
 }
 private void OnUpdateAvailable( object sender, UpdaterActionEventArgs e )
 {
     if( null != UpdateAvailable )
     {
         UpdateAvailable( this, e );
     }
 }
 private void OnServerManifestDownloaded( object sender, UpdaterActionEventArgs e )
 {
     if( null != ServerManifestDownloaded )
     {
         ServerManifestDownloaded( this, e );
     }
 }
 private void OnManifestValidationFailed( object sender, UpdaterActionEventArgs e )
 {
     if( null != ManifestValidationFailed )
     {
         ManifestValidationFailed( this, e );
     }
 }
 private void OnFilesValidationFailed( object sender, UpdaterActionEventArgs e )
 {
     if( null != FilesValidationFailed )
     {
         FilesValidationFailed( this, e );
     }
 }
 private void OnDownloadStarted( object sender, UpdaterActionEventArgs e )
 {
     if( null != DownloadStarted )
     {
         DownloadStarted( this, e );
     }
 }