コード例 #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);
     }
 }
コード例 #6
0
 private void OnUpdateAvailable( object sender, UpdaterActionEventArgs e )
 {
     if( null != UpdateAvailable )
     {
         UpdateAvailable( this, e );
     }
 }
コード例 #7
0
 private void OnServerManifestDownloaded( object sender, UpdaterActionEventArgs e )
 {
     if( null != ServerManifestDownloaded )
     {
         ServerManifestDownloaded( this, e );
     }
 }
コード例 #8
0
 private void OnManifestValidationFailed( object sender, UpdaterActionEventArgs e )
 {
     if( null != ManifestValidationFailed )
     {
         ManifestValidationFailed( this, e );
     }
 }
コード例 #9
0
 private void OnFilesValidationFailed( object sender, UpdaterActionEventArgs e )
 {
     if( null != FilesValidationFailed )
     {
         FilesValidationFailed( this, e );
     }
 }
コード例 #10
0
 private void OnDownloadStarted( object sender, UpdaterActionEventArgs e )
 {
     if( null != DownloadStarted )
     {
         DownloadStarted( this, e );
     }
 }