示例#1
0
		void ProcessFile(object sender, ScanEventArgs e)
		{
			if ( (events_ != null) && (events_.ProcessFile != null) ) {
				events_.ProcessFile(sender, e);
			}
			
			if ( e.ContinueRunning ) {
				ZipEntry entry = entryFactory_.MakeFileEntry(e.Name);
				outputStream_.PutNextEntry(entry);
				AddFileContents(e.Name);
			}
		}
示例#2
0
 /// <summary>
 /// Raise the ProcessFile event.
 /// </summary>
 /// <param name="file">The file name.</param>
 public void OnProcessFile(string file)
 {
     if ( ProcessFile != null ) {
         ScanEventArgs args = new ScanEventArgs(file);
         ProcessFile(this, args);
         alive_ = args.ContinueRunning;
     }
 }
示例#3
0
		/// <summary>
		/// Fires the CompletedFile delegate
		/// </summary>
		/// <param name="file">The file whose processing has been completed.</param>
		/// <returns>A boolean indicating if execution should continue or not.</returns>
		public bool OnCompletedFile(string file)
		{
			bool result = true;
			if ( CompletedFile != null ) {
				ScanEventArgs args = new ScanEventArgs(file);
				CompletedFile(this, args);
				result = args.ContinueRunning;
			}
			return result;
		}
示例#4
0
		/// <summary>
		/// Raise the complete file event
		/// </summary>
		/// <param name="file">The file name</param>
		void OnCompleteFile(string file)
		{
			if (CompletedFile != null)
			{
				ScanEventArgs args = new ScanEventArgs(file);
				CompletedFile(this, args);
				alive_ = args.ContinueRunning;
			}
		}