ICSharpCode.SharpZipLib.Core.FileSystemScanner.OnCompleteFile C# (CSharp) Method

OnCompleteFile() public method

Raise the complete file event
public OnCompleteFile ( string file ) : void
file string The file name
return void
        void OnCompleteFile(string file)
        {
            CompletedFileHandler handler = CompletedFile;

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