Beispiel #1
0
		/// <summary>
		/// Raise the complete file event
		/// </summary>
		/// <param name="file">The file name</param>
		void OnCompleteFile( string file ) {
			CompletedFileHandler handler = CompletedFile;

			if( handler != null ) {
				ScanEventArgs args = new ScanEventArgs( file );
				handler( this, args );
				alive_ = args.ContinueRunning;
			}
		}
Beispiel #2
0
		/// <summary>
		/// Raise the ProcessFile event.
		/// </summary>
		/// <param name="file">The file name.</param>
		void OnProcessFile( string file ) {
			ProcessFileHandler handler = ProcessFile;

			if( handler != null ) {
				ScanEventArgs args = new ScanEventArgs( file );
				handler( this, args );
				alive_ = args.ContinueRunning;
			}
		}