Crisis.Ionic.Zip.ZipEntry.ExtractWithPassword C# (CSharp) Method

ExtractWithPassword() public method

Extract the entry to a file in the filesystem, relative to the current directory, using the specified behavior when extraction would overwrite an existing file.

See the remarks on the LastModified property, for some details about how the last modified time of the created file is set.

public ExtractWithPassword ( ExtractExistingFileAction extractExistingFile, string password ) : void
extractExistingFile ExtractExistingFileAction /// The action to take if extraction would overwrite an existing file. ///
password string The Password to use for decrypting the entry.
return void
        public void ExtractWithPassword(ExtractExistingFileAction extractExistingFile, string password)
        {
            ExtractExistingFile = extractExistingFile;
            InternalExtract(".", null, password);
        }

Same methods

ZipEntry::ExtractWithPassword ( Stream stream, string password ) : void
ZipEntry::ExtractWithPassword ( string password ) : void
ZipEntry::ExtractWithPassword ( string baseDirectory, ExtractExistingFileAction extractExistingFile, string password ) : void
ZipEntry::ExtractWithPassword ( string baseDirectory, string password ) : void
ZipEntry