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

OnFileFailure() private method

Raise the FileFailure event.
private OnFileFailure ( string file, Exception e ) : bool
file string The file name.
e System.Exception The exception detected.
return bool
        bool OnFileFailure(string file, Exception e)
        {
            FileFailureHandler handler = FileFailure;

            bool result = (handler != null);

            if (result) {
                var args = new ScanFailureEventArgs(file, e);
                FileFailure(this, args);
                alive_ = args.ContinueRunning;
            }
            return result;
        }