ExtractExisting() static private method

static private ExtractExisting ( string archiveName, ZipEntry entry, string extractLocation ) : ExtractProgressEventArgs
archiveName string
entry ZipEntry
extractLocation string
return ExtractProgressEventArgs
        internal bool OnExtractExisting(ZipEntry entry, string path)
        {
            EventHandler <ExtractProgressEventArgs> ep = ExtractProgress;

            if (ep != null)
            {
                var e = ExtractProgressEventArgs.ExtractExisting(ArchiveNameForEvent, entry, path);
                ep(this, e);
                if (e.Cancel)
                {
                    _extractOperationCanceled = true;
                }
            }
            return(_extractOperationCanceled);
        }