Ejemplo n.º 1
0
 private void onFolderDeleted(object sender, FileInfoEventArgs e)
 {
     if (folderDeleted != null)
     {
         folderDeleted(this, e);
     }
 }
Ejemplo n.º 2
0
 private void onDirCreated(object sender, FileInfoEventArgs e)
 {
     if (dirCreated != null)
     {
         dirCreated(this, e);
     }
 }
Ejemplo n.º 3
0
 private void onlocalFileNotOnNetwork(object sender, FileInfoEventArgs e)
 {
     if (localFileNotOnNetwork != null)
     {
         localFileNotOnNetwork(this, e);
     }
 }
Ejemplo n.º 4
0
 private void onFilesIdentical(object sender, FileInfoEventArgs e)
 {
     if (filesIdentical != null)
     {
         filesIdentical(this, e);
     }
 }
Ejemplo n.º 5
0
 private void onFileCopy(object sender, FileInfoEventArgs e)
 {
     if (fileCopy != null)
     {
         fileCopy(this, e);
     }
 }
Ejemplo n.º 6
0
 private void onLocalFileMostRecent(object sender, FileInfoEventArgs e)
 {
     if (localFileMostRecent != null)
     {
         localFileMostRecent(this, e);
     }
 }
Ejemplo n.º 7
0
 private void onNetworkFileMostRecent(object sender, FileInfoEventArgs e)
 {
     if (networkFileMostRecent != null)
     {
         networkFileMostRecent(this, e);
     }
 }
Ejemplo n.º 8
0
 private void onLocalFileMissing(object sender, FileInfoEventArgs e)
 {
     if (localFileMissing != null)
     {
         localFileMissing(this, e);
     }
 }
Ejemplo n.º 9
0
 private void onLocalFileOverWrite(object sender, FileInfoEventArgs e)
 {
     if (fileOverWrite != null)
     {
         fileOverWrite(this, e);
     }
 }
Ejemplo n.º 10
0
 // functions to trigger events
 private void onFileExamined(object sender, FileInfoEventArgs e)
 {
     if (fileExamined != null)  // if we have been given a function point provided by the client
     {
         fileExamined(this, e); // trigger the event
     }
 }
Ejemplo n.º 11
0
 private void folderDelH(object sender, FileInfoEventArgs e)
 {
     bf.ReportProgress(0, e.path);
 }
Ejemplo n.º 12
0
 private void dirCreatedH(object sender, FileInfoEventArgs e)
 {
     bu.ReportProgress(1, e.path);
 }
Ejemplo n.º 13
0
 private void fileCopyH(object sender, FileInfoEventArgs e)
 {
     bu.ReportProgress(0, e.path);
 }
Ejemplo n.º 14
0
 private void locFileNotOnNetworkH(object sender, FileInfoEventArgs e)
 {
     b.ReportProgress(3, e.path);
 }
Ejemplo n.º 15
0
 private void locFileMissingH(object sender, FileInfoEventArgs e)
 {
     b.ReportProgress(2, e.path);
 }
Ejemplo n.º 16
0
 private void locMoreRecentH(object sender, FileInfoEventArgs e)
 {
     b.ReportProgress(1, e.path);
 }