123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689 |
- namespace SevenZip
- {
- using System.Collections.Generic;
- using System.IO;
- #if DOTNET20
- using System.Threading;
- #else
- using System.Windows.Threading;
- #endif
- partial class SevenZipCompressor
- {
- #region Delegates
- private delegate void CompressFiles1Delegate(string archiveName, string[] fileFullNames);
- private delegate void CompressFiles2Delegate(Stream archiveStream, string[] fileFullNames);
- private delegate void CompressFiles3Delegate(string archiveName, int commonRootLength, string[] fileFullNames);
- private delegate void CompressFiles4Delegate(Stream archiveStream, int commonRootLength, string[] fileFullNames);
- private delegate void CompressFilesEncrypted1Delegate(string archiveName, string password, string[] fileFullNames);
- private delegate void CompressFilesEncrypted2Delegate(Stream archiveStream, string password, string[] fileFullNames);
- private delegate void CompressFilesEncrypted3Delegate(string archiveName, int commonRootLength, string password, string[] fileFullNames);
- private delegate void CompressFilesEncrypted4Delegate(Stream archiveStream, int commonRootLength, string password, string[] fileFullNames);
- private delegate void CompressDirectory1Delegate(string directory, string archiveName);
- private delegate void CompressDirectory2Delegate(string directory, Stream archiveStream);
- private delegate void CompressDirectory3Delegate(string directory, string archiveName, string password);
- private delegate void CompressDirectory4Delegate(string directory, Stream archiveStream, string password);
- private delegate void CompressDirectory5Delegate(string directory, string archiveName,
- string password, string searchPattern, bool recursion);
- private delegate void CompressDirectory6Delegate(string directory, Stream archiveStream,
- string password, string searchPattern, bool recursion);
- private delegate void CompressStream1Delegate(Stream inStream, Stream outStream);
- private delegate void CompressStream2Delegate(Stream inStream, Stream outStream, string password);
- private delegate void ModifyArchive1Delegate(string archiveName, Dictionary<int, string> newFileNames);
- private delegate void ModifyArchive2Delegate(string archiveName, Dictionary<int, string> newFileNames,
- string password);
- #endregion
- #region CompressFiles overloads
- #if !DOTNET20
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="archiveName">The archive file name.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="archiveName">The archive file name.</param>
- #endif
- public void BeginCompressFiles(
- string archiveName
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- , params string[] fileFullNames
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressFiles1Delegate(CompressFiles)).BeginInvoke(archiveName, fileFullNames,
- AsyncCallbackImplementation, this);
- }
- #if !DOTNET20
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressFiles(string archiveName ... ) overloads for archiving to disk.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressFiles(string archiveName ... ) overloads for archiving to disk.</param>
- #endif
- public void BeginCompressFiles(
- Stream archiveStream
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- , params string[] fileFullNames
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressFiles2Delegate(CompressFiles)).BeginInvoke(archiveStream, fileFullNames,
- AsyncCallbackImplementation, this);
- }
- #if !DOTNET20
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="commonRootLength">The length of the common root of the file names.</param>
- /// <param name="archiveName">The archive file name.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="commonRootLength">The length of the common root of the file names.</param>
- /// <param name="archiveName">The archive file name.</param>
- #endif
- public void BeginCompressFiles(
- string archiveName, int commonRootLength
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- , params string[] fileFullNames
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressFiles3Delegate(CompressFiles)).BeginInvoke(archiveName, commonRootLength, fileFullNames,
- AsyncCallbackImplementation, this);
- }
- #if !DOTNET20
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="commonRootLength">The length of the common root of the file names.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressFiles(string archiveName, ... ) overloads for archiving to disk.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="commonRootLength">The length of the common root of the file names.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressFiles(string archiveName, ... ) overloads for archiving to disk.</param>
- #endif
- public void BeginCompressFiles(
- Stream archiveStream, int commonRootLength
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- , params string[] fileFullNames
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressFiles4Delegate(CompressFiles)).BeginInvoke(archiveStream, commonRootLength, fileFullNames,
- AsyncCallbackImplementation, this);
- }
- #if !DOTNET20
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="archiveName">The archive file name</param>
- /// <param name="password">The archive password.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="archiveName">The archive file name</param>
- /// <param name="password">The archive password.</param>
- #endif
- public void BeginCompressFilesEncrypted(
- string archiveName, string password
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- , params string[] fileFullNames
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressFilesEncrypted1Delegate(CompressFilesEncrypted)).BeginInvoke(archiveName, password, fileFullNames,
- AsyncCallbackImplementation, this);
- }
- #if !DOTNET20
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressFiles( ... string archiveName ... ) overloads for archiving to disk.</param>
- /// <param name="password">The archive password.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressFiles( ... string archiveName ... ) overloads for archiving to disk.</param>
- /// <param name="password">The archive password.</param>
- #endif
- public void BeginCompressFilesEncrypted(
- Stream archiveStream, string password
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- , params string[] fileFullNames
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressFilesEncrypted2Delegate(CompressFilesEncrypted)).BeginInvoke(archiveStream, password, fileFullNames,
- AsyncCallbackImplementation, this);
- }
- #if !DOTNET20
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="archiveName">The archive file name</param>
- /// <param name="password">The archive password.</param>
- /// <param name="commonRootLength">The length of the common root of the file names.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="archiveName">The archive file name</param>
- /// <param name="password">The archive password.</param>
- /// <param name="commonRootLength">The length of the common root of the file names.</param>
- #endif
- public void BeginCompressFilesEncrypted(
- string archiveName, int commonRootLength, string password
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- , params string[] fileFullNames
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressFilesEncrypted3Delegate(CompressFilesEncrypted)).BeginInvoke(archiveName, commonRootLength, password,
- fileFullNames, AsyncCallbackImplementation, this);
- }
- #if !DOTNET20
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressFiles( ... string archiveName ... ) overloads for archiving to disk.</param>
- /// <param name="password">The archive password.</param>
- /// <param name="commonRootLength">The length of the common root of the file names.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Packs files into the archive asynchronously.
- /// </summary>
- /// <param name="fileFullNames">Array of file names to pack.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressFiles( ... string archiveName ... ) overloads for archiving to disk.</param>
- /// <param name="password">The archive password.</param>
- /// <param name="commonRootLength">The length of the common root of the file names.</param>
- #endif
- public void BeginCompressFilesEncrypted(
- Stream archiveStream, int commonRootLength, string password
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- , params string[] fileFullNames
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressFilesEncrypted4Delegate(CompressFilesEncrypted)).BeginInvoke(archiveStream, commonRootLength, password,
- fileFullNames, AsyncCallbackImplementation, this);
- }
- #endregion
- #region BeginCompressDirectory overloads
- #if !CS4
- #if !DOTNET20
- /// <summary>
- /// Recursively packs all files in the specified directory.
- /// </summary>
- /// <param name="directory">The directory to compress.</param>
- /// <param name="archiveName">The archive file name.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Recursively packs all files in the specified directory.
- /// </summary>
- /// <param name="directory">The directory to compress.</param>
- /// <param name="archiveName">The archive file name.</param>
- #endif
- public void BeginCompressDirectory(
- string directory, string archiveName
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressDirectory1Delegate(CompressDirectory)).BeginInvoke(directory, archiveName,
- AsyncCallbackImplementation, this);
- }
- #if !DOTNET20
- /// <summary>
- /// Recursively packs all files in the specified directory.
- /// </summary>
- /// <param name="directory">The directory to compress.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressDirectory( ... string archiveName ... ) overloads for archiving to disk.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Recursively packs all files in the specified directory.
- /// </summary>
- /// <param name="directory">The directory to compress.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressDirectory( ... string archiveName ... ) overloads for archiving to disk.</param>
- #endif
- public void BeginCompressDirectory(
- string directory, Stream archiveStream
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressDirectory2Delegate(CompressDirectory)).BeginInvoke(directory, archiveStream,
- AsyncCallbackImplementation, this);
- }
- #if !DOTNET20
- /// <summary>
- /// Recursively packs all files in the specified directory.
- /// </summary>
- /// <param name="directory">The directory to compress.</param>
- /// <param name="archiveName">The archive file name.</param>
- /// <param name="password">The archive password.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Recursively packs all files in the specified directory.
- /// </summary>
- /// <param name="directory">The directory to compress.</param>
- /// <param name="archiveName">The archive file name.</param>
- /// <param name="password">The archive password.</param>
- #endif
- public void BeginCompressDirectory(
- string directory, string archiveName, string password
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressDirectory3Delegate(CompressDirectory)).BeginInvoke(directory, archiveName,
- password, AsyncCallbackImplementation, this);
- }
- #if !DOTNET20
- /// <summary>
- /// Recursively packs all files in the specified directory.
- /// </summary>
- /// <param name="directory">The directory to compress.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressDirectory( ... string archiveName ... ) overloads for archiving to disk.</param>
- /// <param name="password">The archive password.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Recursively packs all files in the specified directory.
- /// </summary>
- /// <param name="directory">The directory to compress.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressDirectory( ... string archiveName ... ) overloads for archiving to disk.</param>
- /// <param name="password">The archive password.</param>
- #endif
- public void BeginCompressDirectory(
- string directory, Stream archiveStream, string password
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressDirectory4Delegate(CompressDirectory)).BeginInvoke(directory, archiveStream,
- password, AsyncCallbackImplementation, this);
- }
- #endif
- #if !DOTNET20
- /// <summary>
- /// Packs all files in the specified directory asynchronously.
- /// </summary>
- /// <param name="directory">The directory to compress.</param>
- /// <param name="archiveName">The archive file name.</param>
- /// <param name="password">The archive password.</param>
- /// <param name="searchPattern">Search string, such as "*.txt".</param>
- /// <param name="recursion">If true, files will be searched for recursively; otherwise, not.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Packs all files in the specified directory asynchronously.
- /// </summary>
- /// <param name="directory">The directory to compress.</param>
- /// <param name="archiveName">The archive file name.</param>
- /// <param name="password">The archive password.</param>
- /// <param name="searchPattern">Search string, such as "*.txt".</param>
- /// <param name="recursion">If true, files will be searched for recursively; otherwise, not.</param>
- #endif
- public void BeginCompressDirectory(string directory, string archiveName,
- string password
- #if CS4
- = ""
- #endif
- , string searchPattern
- #if CS4
- = "*"
- #endif
- , bool recursion
- #if CS4
- = true
- #endif
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #if CS4
- = DispatcherPriority.Normal
- #endif
- #endif
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressDirectory5Delegate(CompressDirectory)).BeginInvoke(directory, archiveName,
- password, searchPattern, recursion, AsyncCallbackImplementation, this);
- }
- #if !DOTNET20
- /// <summary>
- /// Packs all files in the specified directory asynchronously.
- /// </summary>
- /// <param name="directory">The directory to compress.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressDirectory( ... string archiveName ... ) overloads for archiving to disk.</param>
- /// <param name="password">The archive password.</param>
- /// <param name="searchPattern">Search string, such as "*.txt".</param>
- /// <param name="recursion">If true, files will be searched for recursively; otherwise, not.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Packs all files in the specified directory asynchronously.
- /// </summary>
- /// <param name="directory">The directory to compress.</param>
- /// <param name="archiveStream">The archive output stream.
- /// Use CompressDirectory( ... string archiveName ... ) overloads for archiving to disk.</param>
- /// <param name="password">The archive password.</param>
- /// <param name="searchPattern">Search string, such as "*.txt".</param>
- /// <param name="recursion">If true, files will be searched for recursively; otherwise, not.</param>
- #endif
- public void BeginCompressDirectory(string directory, Stream archiveStream,
- string password
- #if CS4
- = ""
- #endif
- , string searchPattern
- #if CS4
- = "*"
- #endif
- , bool recursion
- #if CS4
- = true
- #endif
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #if CS4
- = DispatcherPriority.Normal
- #endif
- #endif
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressDirectory6Delegate(CompressDirectory)).BeginInvoke(directory, archiveStream,
- password, searchPattern, recursion, AsyncCallbackImplementation, this);
- }
- #endregion
- #region BeginCompressStream overloads
- #if !CS4
- #if !DOTNET20
- /// <summary>
- /// Compresses the specified stream.
- /// </summary>
- /// <param name="inStream">The source uncompressed stream.</param>
- /// <param name="outStream">The destination compressed stream.</param>
- /// <exception cref="ArgumentException">ArgumentException: at least one of the specified streams is invalid.</exception>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Compresses the specified stream.
- /// </summary>
- /// <param name="inStream">The source uncompressed stream.</param>
- /// <param name="outStream">The destination compressed stream.</param>
- /// <exception cref="System.ArgumentException">ArgumentException: at least one of the specified streams is invalid.</exception>
- #endif
- public void BeginCompressStream(Stream inStream, Stream outStream
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressStream1Delegate(CompressStream)).BeginInvoke(inStream, outStream, AsyncCallbackImplementation, this);
- }
- #endif
- #if !DOTNET20
- /// <summary>
- /// Compresses the specified stream.
- /// </summary>
- /// <param name="inStream">The source uncompressed stream.</param>
- /// <param name="outStream">The destination compressed stream.</param>
- /// <param name="password">The archive password.</param>
- /// <exception cref="System.ArgumentException">ArgumentException: at least one of the specified streams is invalid.</exception>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Compresses the specified stream.
- /// </summary>
- /// <param name="inStream">The source uncompressed stream.</param>
- /// <param name="outStream">The destination compressed stream.</param>
- /// <param name="password">The archive password.</param>
- /// <exception cref="System.ArgumentException">ArgumentException: at least one of the specified streams is invalid.</exception>
- #endif
- public void BeginCompressStream(Stream inStream, Stream outStream, string password
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #if CS4
- = DispatcherPriority.Normal
- #endif
- #endif
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new CompressStream2Delegate(CompressStream)).BeginInvoke(inStream, outStream, password, AsyncCallbackImplementation, this);
- }
- #endregion
-
- #region BeginModifyArchive overloads
- #if !CS4
- #if !DOTNET20
- /// <summary>
- /// Modifies the existing archive asynchronously (renames files or deletes them).
- /// </summary>
- /// <param name="archiveName">The archive file name.</param>
- /// <param name="newFileNames">New file names. Null value to delete the corresponding index.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Modifies the existing archive asynchronously (renames files or deletes them).
- /// </summary>
- /// <param name="archiveName">The archive file name.</param>
- /// <param name="newFileNames">New file names. Null value to delete the corresponding index.</param>
- #endif
- public void BeginModifyArchive(string archiveName, Dictionary<int, string> newFileNames
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #endif
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new ModifyArchive1Delegate(ModifyArchive)).BeginInvoke(archiveName, newFileNames, AsyncCallbackImplementation, this);
- }
- #endif
- #if !DOTNET20
- /// <summary>
- /// Modifies the existing archive asynchronously (renames files or deletes them).
- /// </summary>
- /// <param name="archiveName">The archive file name.</param>
- /// <param name="newFileNames">New file names. Null value to delete the corresponding index.</param>
- /// <param name="password">The archive password.</param>
- /// <param name="eventPriority">The priority of events, relative to the other pending operations in the System.Windows.Threading.Dispatcher event queue, the specified method is invoked.</param>
- #else
- /// <summary>
- /// Modifies the existing archive asynchronously (renames files or deletes them).
- /// </summary>
- /// <param name="archiveName">The archive file name.</param>
- /// <param name="newFileNames">New file names. Null value to delete the corresponding index.</param>
- /// <param name="password">The archive password.</param>
- #endif
- public void BeginModifyArchive(string archiveName, Dictionary<int, string> newFileNames,
- string password
- #if CS4
- = ""
- #endif
- #if !DOTNET20
- , DispatcherPriority eventPriority
- #if CS4
- = DispatcherPriority.Normal
- #endif
- #endif
- )
- {
- SaveContext(
- #if !DOTNET20
- eventPriority
- #endif
- );
- (new ModifyArchive2Delegate(ModifyArchive)).BeginInvoke(archiveName, newFileNames, password, AsyncCallbackImplementation, this);
- }
- #endregion
- }
- }
|