diff --git a/content/sites/aspose/zip/english/net/_index.md b/content/sites/aspose/zip/english/net/_index.md index 821a9c64ea6f..6fda42d83e09 100644 --- a/content/sites/aspose/zip/english/net/_index.md +++ b/content/sites/aspose/zip/english/net/_index.md @@ -13,6 +13,7 @@ is_root: true | --- | --- | | [Aspose.Zip](./aspose.zip/) | The Zip namespace contains classes which represent zip archive and common archive related entities. | | [Aspose.Zip.ArchiveInfo](./aspose.zip.archiveinfo/) | The ArchiveInfo namespace contains classes which represent archive info related entities. | +| [Aspose.Zip.ARJ](./aspose.zip.arj/) | The ARJ namespace contains classes which represent ARJ related entities. | | [Aspose.Zip.Bzip2](./aspose.zip.bzip2/) | The Bzip2 namespace contains classes which represent bzip2 archive related entities. | | [Aspose.Zip.Cab](./aspose.zip.cab/) | The Cab namespace contains classes which represent Cab archive related entities. | | [Aspose.Zip.Cpio](./aspose.zip.cpio/) | The Cpio namespace contains classes which represent cpio archive related entities. | diff --git a/content/sites/aspose/zip/english/net/aspose.zip.archiveinfo/archiveformat/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.archiveinfo/archiveformat/_index.md index afbb5040c2eb..256d3eebd4b4 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.archiveinfo/archiveformat/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.archiveinfo/archiveformat/_index.md @@ -3,7 +3,7 @@ title: Enum ArchiveFormat second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.ArchiveInfo.ArchiveFormat enum. Supported archive formats type: docs -weight: 60 +weight: 80 url: /net/aspose.zip.archiveinfo/archiveformat/ --- ## ArchiveFormat enumeration @@ -38,6 +38,7 @@ public enum ArchiveFormat | Zstandard | `17` | Zstandard archive ([`ZstandardArchive`](../../aspose.zip.zstandard/zstandardarchive/)). | | Iso | `18` | Iso archive ([`IsoArchive`](../../aspose.zip.iso/isoarchive/)). | | Lha | `19` | Lha archive ([`LhaArchive`](../../aspose.zip.lha/lhaarchive/) | +| Arj | `20` | Lha archive ([`ArjArchive`](../../aspose.zip.arj/arjarchive/) | ### See Also diff --git a/content/sites/aspose/zip/english/net/aspose.zip.archiveinfo/archiveformatinfo/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.archiveinfo/archiveformatinfo/_index.md index a79ad5c1732a..e728ea17d167 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.archiveinfo/archiveformatinfo/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.archiveinfo/archiveformatinfo/_index.md @@ -3,7 +3,7 @@ title: Class ArchiveFormatInfo second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.ArchiveInfo.ArchiveFormatInfo class. Represents information about the archive format type: docs -weight: 70 +weight: 90 url: /net/aspose.zip.archiveinfo/archiveformatinfo/ --- ## ArchiveFormatInfo class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.archiveinfo/archiveinstanceinfo/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.archiveinfo/archiveinstanceinfo/_index.md index d0331f72d76d..d734536de310 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.archiveinfo/archiveinstanceinfo/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.archiveinfo/archiveinstanceinfo/_index.md @@ -3,7 +3,7 @@ title: Class ArchiveInstanceInfo second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.ArchiveInfo.ArchiveInstanceInfo class. Represents information about the archive instance type: docs -weight: 80 +weight: 100 url: /net/aspose.zip.archiveinfo/archiveinstanceinfo/ --- ## ArchiveInstanceInfo class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.arj/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.arj/_index.md new file mode 100644 index 000000000000..54466712c867 --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.arj/_index.md @@ -0,0 +1,18 @@ +--- +title: Aspose.Zip.ARJ +second_title: Aspose.ZIP for .NET API Reference +description: The ARJ namespace contains classes which represent ARJ related entities +type: docs +weight: 30 +url: /net/aspose.zip.arj/ +--- +The ARJ namespace contains classes which represent ARJ related entities. + +## Classes + +| Class | Description | +| --- | --- | +| [ArjArchive](./arjarchive/) | This class represents ARJ archive file. | +| [ArjEntryPlain](./arjentryplain/) | Represents single file within ARJ archive. | + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/_index.md new file mode 100644 index 000000000000..b1b292400f0b --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/_index.md @@ -0,0 +1,69 @@ +--- +title: Class ArjArchive +second_title: Aspose.ZIP for .NET API Reference +description: Aspose.Zip.ARJ.ArjArchive class. This class represents ARJ archive file +type: docs +weight: 10 +url: /net/aspose.zip.arj/arjarchive/ +--- +## ArjArchive class + +This class represents ARJ archive file. + +```csharp +public class ArjArchive : IArchive +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [ArjArchive](arjarchive/#constructor)(Stream) | Initializes a new instance of the `ArjArchive` class and composes entries list can be extracted from the archive. | +| [ArjArchive](arjarchive/#constructor_1)(string) | Initializes a new instance of the `ArjArchive` class and composes entries list can be extracted from the archive. | + +## Properties + +| Name | Description | +| --- | --- | +| [Commentary](../../aspose.zip.arj/arjarchive/commentary/) { get; } | Gets the commentary. | +| [Entries](../../aspose.zip.arj/arjarchive/entries/) { get; } | Gets entries of [`ArjEntryPlain`](../arjentryplain/) type constituting the ARJ archive. | +| [Name](../../aspose.zip.arj/arjarchive/name/) { get; } | Gets the original name. | + +## Methods + +| Name | Description | +| --- | --- | +| [Dispose](../../aspose.zip.arj/arjarchive/dispose/)() | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. | +| [ExtractToDirectory](../../aspose.zip.arj/arjarchive/extracttodirectory/)(string) | Extracts all entries to the specified directory. | + +## Remarks + +Only following compression methods are supported: + +**Method** + +**Explanation** + +**0** + +Uncompressed + +**1** + +Combination of LZ77 and adaptive Huffman coding. Best ratio. + +**2** + +Combination of LZ77 and adaptive Huffman coding. + +**3** + +Combination of LZ77 and adaptive Huffman coding. Best speed. + +### See Also + +* interface [IArchive](../../aspose.zip/iarchive/) +* namespace [Aspose.Zip.ARJ](../../aspose.zip.arj/) +* assembly [Aspose.Zip](../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/arjarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/arjarchive/_index.md new file mode 100644 index 000000000000..e3e06f49b2e9 --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/arjarchive/_index.md @@ -0,0 +1,89 @@ +--- +title: ArjArchive.ArjArchive +second_title: Aspose.ZIP for .NET API Reference +description: ArjArchive constructor. Initializes a new instance of the ArjArchive class and composes entries list can be extracted from the archive +type: docs +weight: 10 +url: /net/aspose.zip.arj/arjarchive/arjarchive/ +--- +## ArjArchive(Stream) {#constructor} + +Initializes a new instance of the [`ArjArchive`](../) class and composes entries list can be extracted from the archive. + +```csharp +public ArjArchive(Stream extractionSource) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| extractionSource | Stream | The source of the archive. | + +### Exceptions + +| exception | condition | +| --- | --- | +| ArgumentNullException | *extractionSource* is null. | +| ArgumentException | >*extractionSource* does not support seeking. | +| InvalidDataException | Wrong signature for archive. - or - The file is not an ARJ archive. | +| NotSupportedException | Archive is garbled. | + +## Remarks + +This constructor does not decompress any entry. See [`Extract`](../../arjentryplain/extract/) method for decompressing. + +### See Also + +* class [ArjArchive](../) +* namespace [Aspose.Zip.ARJ](../../arjarchive/) +* assembly [Aspose.Zip](../../../) + +--- + +## ArjArchive(string) {#constructor_1} + +Initializes a new instance of the [`ArjArchive`](../) class and composes entries list can be extracted from the archive. + +```csharp +public ArjArchive(string path) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| path | String | The path to the archive file. | + +### Exceptions + +| exception | condition | +| --- | --- | +| ArgumentNullException | *path* is null. | +| SecurityException | The caller does not have the required permission to access. | +| ArgumentException | The *path* is empty, contains only white spaces, or contains invalid characters. | +| UnauthorizedAccessException | Access to file *path* is denied. | +| PathTooLongException | The specified *path*, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters, and file names must be less than 260 characters. | +| NotSupportedException | File at *path* contains a colon (:) in the middle of the string. | +| FileNotFoundException | The file is not found. | +| DirectoryNotFoundException | The specified path is invalid, such as being on an unmapped drive. | +| IOException | The file is already open. | + +## Remarks + +This constructor does not unpack any entry. See [`Extract`](../../arjentryplain/extract/) method for decompressing. + +## Examples + +The following example shows how to extract all of the entries to a directory. + +```csharp +using (var archive = new ArjArchive("archive.arj")) +{ + archive.ExtractToDirectory("C:\extracted"); +} +``` + +### See Also + +* class [ArjArchive](../) +* namespace [Aspose.Zip.ARJ](../../arjarchive/) +* assembly [Aspose.Zip](../../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/commentary/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/commentary/_index.md new file mode 100644 index 000000000000..8b9a75ad2f86 --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/commentary/_index.md @@ -0,0 +1,23 @@ +--- +title: ArjArchive.Commentary +second_title: Aspose.ZIP for .NET API Reference +description: ArjArchive property. Gets the commentary +type: docs +weight: 20 +url: /net/aspose.zip.arj/arjarchive/commentary/ +--- +## ArjArchive.Commentary property + +Gets the commentary. + +```csharp +public string Commentary { get; } +``` + +### See Also + +* class [ArjArchive](../) +* namespace [Aspose.Zip.ARJ](../../arjarchive/) +* assembly [Aspose.Zip](../../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/dispose/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/dispose/_index.md new file mode 100644 index 000000000000..8c93d6ad70e0 --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/dispose/_index.md @@ -0,0 +1,23 @@ +--- +title: ArjArchive.Dispose +second_title: Aspose.ZIP for .NET API Reference +description: ArjArchive method. Performs applicationdefined tasks associated with freeing releasing or resetting unmanaged resources +type: docs +weight: 50 +url: /net/aspose.zip.arj/arjarchive/dispose/ +--- +## ArjArchive.Dispose method + +Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + +```csharp +public void Dispose() +``` + +### See Also + +* class [ArjArchive](../) +* namespace [Aspose.Zip.ARJ](../../arjarchive/) +* assembly [Aspose.Zip](../../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/entries/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/entries/_index.md new file mode 100644 index 000000000000..f097273fed10 --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/entries/_index.md @@ -0,0 +1,24 @@ +--- +title: ArjArchive.Entries +second_title: Aspose.ZIP for .NET API Reference +description: ArjArchive property. Gets entries of ArjEntryPlain type constituting the ARJ archive +type: docs +weight: 30 +url: /net/aspose.zip.arj/arjarchive/entries/ +--- +## ArjArchive.Entries property + +Gets entries of [`ArjEntryPlain`](../../arjentryplain/) type constituting the ARJ archive. + +```csharp +public ReadOnlyCollection Entries { get; } +``` + +### See Also + +* class [ArjEntryPlain](../../arjentryplain/) +* class [ArjArchive](../) +* namespace [Aspose.Zip.ARJ](../../arjarchive/) +* assembly [Aspose.Zip](../../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/extracttodirectory/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/extracttodirectory/_index.md new file mode 100644 index 000000000000..d10542a76e0c --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/extracttodirectory/_index.md @@ -0,0 +1,44 @@ +--- +title: ArjArchive.ExtractToDirectory +second_title: Aspose.ZIP for .NET API Reference +description: ArjArchive method. Extracts all entries to the specified directory +type: docs +weight: 60 +url: /net/aspose.zip.arj/arjarchive/extracttodirectory/ +--- +## ArjArchive.ExtractToDirectory method + +Extracts all entries to the specified directory. + +```csharp +public void ExtractToDirectory(string destinationDirectory) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| destinationDirectory | String | The directory to extract the entries to. | + +### Exceptions + +| exception | condition | +| --- | --- | +| ArgumentNullException | Thrown when the *destinationDirectory* is null. | + +## Examples + +The following example shows how to extract all entries to a directory: + +```csharp +using (var archive = new ArjArchive(File.OpenRead("archive.arj"))) +{ + archive.ExtractToDirectory("C:\\extracted"); +} +``` + +### See Also + +* class [ArjArchive](../) +* namespace [Aspose.Zip.ARJ](../../arjarchive/) +* assembly [Aspose.Zip](../../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/name/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/name/_index.md new file mode 100644 index 000000000000..c267cca07bc7 --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjarchive/name/_index.md @@ -0,0 +1,23 @@ +--- +title: ArjArchive.Name +second_title: Aspose.ZIP for .NET API Reference +description: ArjArchive property. Gets the original name +type: docs +weight: 40 +url: /net/aspose.zip.arj/arjarchive/name/ +--- +## ArjArchive.Name property + +Gets the original name. + +```csharp +public string Name { get; } +``` + +### See Also + +* class [ArjArchive](../) +* namespace [Aspose.Zip.ARJ](../../arjarchive/) +* assembly [Aspose.Zip](../../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/_index.md new file mode 100644 index 000000000000..29e15419f8df --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/_index.md @@ -0,0 +1,39 @@ +--- +title: Class ArjEntryPlain +second_title: Aspose.ZIP for .NET API Reference +description: Aspose.Zip.ARJ.ArjEntryPlain class. Represents single file within ARJ archive +type: docs +weight: 20 +url: /net/aspose.zip.arj/arjentryplain/ +--- +## ArjEntryPlain class + +Represents single file within ARJ archive. + +```csharp +public class ArjEntryPlain : IArchiveFileEntry +``` + +## Properties + +| Name | Description | +| --- | --- | +| [CompressedSize](../../aspose.zip.arj/arjentryplain/compressedsize/) { get; } | Gets size of compressed file. | +| [Name](../../aspose.zip.arj/arjentryplain/name/) { get; } | Gets name of the entry within archive. | +| [UncompressedSize](../../aspose.zip.arj/arjentryplain/uncompressedsize/) { get; } | Gets size of original file. | + +## Methods + +| Name | Description | +| --- | --- | +| [Extract](../../aspose.zip.arj/arjentryplain/extract/#extract_1)(FileInfo) | Extracts ARJ archive entry to a file. | +| [Extract](../../aspose.zip.arj/arjentryplain/extract/#extract_2)(Stream) | Extracts the entry to the stream provided. | +| [Extract](../../aspose.zip.arj/arjentryplain/extract/#extract)(string) | Extracts the entry to the filesystem by the path provided. | + +### See Also + +* interface [IArchiveFileEntry](../../aspose.zip/iarchivefileentry/) +* namespace [Aspose.Zip.ARJ](../../aspose.zip.arj/) +* assembly [Aspose.Zip](../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/compressedsize/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/compressedsize/_index.md new file mode 100644 index 000000000000..894b17d0dd04 --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/compressedsize/_index.md @@ -0,0 +1,23 @@ +--- +title: ArjEntryPlain.CompressedSize +second_title: Aspose.ZIP for .NET API Reference +description: ArjEntryPlain property. Gets size of compressed file +type: docs +weight: 10 +url: /net/aspose.zip.arj/arjentryplain/compressedsize/ +--- +## ArjEntryPlain.CompressedSize property + +Gets size of compressed file. + +```csharp +public uint CompressedSize { get; } +``` + +### See Also + +* class [ArjEntryPlain](../) +* namespace [Aspose.Zip.ARJ](../../arjentryplain/) +* assembly [Aspose.Zip](../../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/extract/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/extract/_index.md new file mode 100644 index 000000000000..e3c3bd25a115 --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/extract/_index.md @@ -0,0 +1,125 @@ +--- +title: ArjEntryPlain.Extract +second_title: Aspose.ZIP for .NET API Reference +description: ArjEntryPlain method. Extracts the entry to the filesystem by the path provided +type: docs +weight: 40 +url: /net/aspose.zip.arj/arjentryplain/extract/ +--- +## Extract(string) {#extract} + +Extracts the entry to the filesystem by the path provided. + +```csharp +public FileInfo Extract(string path) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| path | String | The path to destination file. If the file already exists, it will be overwritten. | + +### Return Value + +The file info of composed file. + +### Exceptions + +| exception | condition | +| --- | --- | +| ArgumentNullException | *path* is null or empty. | + +## Examples + +Extract two entries of rar archive. + +```csharp +using (FileStream arjFile = File.Open("archive.arj", FileMode.Open)) +{ + using (ArjArchive archive = new ArjArchive(arjFile)) + { + archive.Entries[0].Extract("first.bin"); + archive.Entries[1].Extract("second.bin"); + } +} +``` + +### See Also + +* class [ArjEntryPlain](../) +* namespace [Aspose.Zip.ARJ](../../arjentryplain/) +* assembly [Aspose.Zip](../../../) + +--- + +## Extract(FileInfo) {#extract_1} + +Extracts ARJ archive entry to a file. + +```csharp +public void Extract(FileInfo fileInfo) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| fileInfo | FileInfo | FileInfo for storing decompressed data. | + +### Exceptions + +| exception | condition | +| --- | --- | +| InvalidOperationException | Archive headers and service information were not read. | +| SecurityException | The caller does not have the required permission to open the *fileInfo*. | +| ArgumentException | File path is empty or contains only white spaces. | +| FileNotFoundException | The file is not found. | +| UnauthorizedAccessException | Path to file is read-only or is a directory. | +| ArgumentNullException | *fileInfo* is null. | +| DirectoryNotFoundException | The specified path is invalid, such as being on an unmapped drive. | +| IOException | The file is already open. | + +## Examples + +```csharp +using (var arjFile = File.Open(sourceFileName, FileMode.Open)) +{ + using (var archive = new ArjArchive(arjFile)) + { + archive.Entries[0].Extract(new FileInfo("extracted.bin")); + } +} +``` + +### See Also + +* class [ArjEntryPlain](../) +* namespace [Aspose.Zip.ARJ](../../arjentryplain/) +* assembly [Aspose.Zip](../../../) + +--- + +## Extract(Stream) {#extract_2} + +Extracts the entry to the stream provided. + +```csharp +public void Extract(Stream destination) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| destination | Stream | Destination stream. Must be writable. | + +### Exceptions + +| exception | condition | +| --- | --- | +| ArgumentException | *destination* does not support writing. | +| InvalidDataException | Checksum mismatch for headers or data. - or - Archive is corrupted. | +| NotImplementedException | Entry compressed with method 4. | + +### See Also + +* class [ArjEntryPlain](../) +* namespace [Aspose.Zip.ARJ](../../arjentryplain/) +* assembly [Aspose.Zip](../../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/name/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/name/_index.md new file mode 100644 index 000000000000..0ace0ddddba8 --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/name/_index.md @@ -0,0 +1,23 @@ +--- +title: ArjEntryPlain.Name +second_title: Aspose.ZIP for .NET API Reference +description: ArjEntryPlain property. Gets name of the entry within archive +type: docs +weight: 20 +url: /net/aspose.zip.arj/arjentryplain/name/ +--- +## ArjEntryPlain.Name property + +Gets name of the entry within archive. + +```csharp +public string Name { get; } +``` + +### See Also + +* class [ArjEntryPlain](../) +* namespace [Aspose.Zip.ARJ](../../arjentryplain/) +* assembly [Aspose.Zip](../../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/uncompressedsize/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/uncompressedsize/_index.md new file mode 100644 index 000000000000..39b635037833 --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.arj/arjentryplain/uncompressedsize/_index.md @@ -0,0 +1,23 @@ +--- +title: ArjEntryPlain.UncompressedSize +second_title: Aspose.ZIP for .NET API Reference +description: ArjEntryPlain property. Gets size of original file +type: docs +weight: 30 +url: /net/aspose.zip.arj/arjentryplain/uncompressedsize/ +--- +## ArjEntryPlain.UncompressedSize property + +Gets size of original file. + +```csharp +public uint UncompressedSize { get; } +``` + +### See Also + +* class [ArjEntryPlain](../) +* namespace [Aspose.Zip.ARJ](../../arjentryplain/) +* assembly [Aspose.Zip](../../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.bzip2/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.bzip2/_index.md index 15668217e00c..c946d0574d99 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.bzip2/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.bzip2/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Bzip2 second_title: Aspose.ZIP for .NET API Reference description: The Bzip2 namespace contains classes which represent bzip2 archive related entities type: docs -weight: 30 +weight: 40 url: /net/aspose.zip.bzip2/ --- The Bzip2 namespace contains classes which represent bzip2 archive related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.bzip2/bzip2archive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.bzip2/bzip2archive/_index.md index 38cf4286be74..e9ef92323c4f 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.bzip2/bzip2archive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.bzip2/bzip2archive/_index.md @@ -3,7 +3,7 @@ title: Class Bzip2Archive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Bzip2.Bzip2Archive class. This class represents bzip2 archive file. Use it to compose or extract bzip2 archives type: docs -weight: 100 +weight: 120 url: /net/aspose.zip.bzip2/bzip2archive/ --- ## Bzip2Archive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.bzip2/bzip2loadoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.bzip2/bzip2loadoptions/_index.md index 85d106f29fae..f73ea6c24515 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.bzip2/bzip2loadoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.bzip2/bzip2loadoptions/_index.md @@ -3,7 +3,7 @@ title: Class Bzip2LoadOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Bzip2.Bzip2LoadOptions class. Options for loading Bzip2Archive. Contains event raised on extraction type: docs -weight: 110 +weight: 130 url: /net/aspose.zip.bzip2/bzip2loadoptions/ --- ## Bzip2LoadOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.bzip2/bzip2saveoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.bzip2/bzip2saveoptions/_index.md index 75092fe36365..a7c356f5c7bd 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.bzip2/bzip2saveoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.bzip2/bzip2saveoptions/_index.md @@ -3,7 +3,7 @@ title: Class Bzip2SaveOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Bzip2.Bzip2SaveOptions class. Options for saving a bzip2 archive type: docs -weight: 120 +weight: 140 url: /net/aspose.zip.bzip2/bzip2saveoptions/ --- ## Bzip2SaveOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.cab/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.cab/_index.md index 6ff7a67f070e..648110601d2f 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.cab/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.cab/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Cab second_title: Aspose.ZIP for .NET API Reference description: The Cab namespace contains classes which represent Cab archive related entities type: docs -weight: 40 +weight: 50 url: /net/aspose.zip.cab/ --- The Cab namespace contains classes which represent Cab archive related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.cab/cabarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.cab/cabarchive/_index.md index b2ec42673a8e..2e0d63027910 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.cab/cabarchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.cab/cabarchive/_index.md @@ -3,7 +3,7 @@ title: Class CabArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Cab.CabArchive class. This class represents cab archive file type: docs -weight: 130 +weight: 150 url: /net/aspose.zip.cab/cabarchive/ --- ## CabArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.cab/cabentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.cab/cabentry/_index.md index 41e5cb385aa8..00d4fba2713a 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.cab/cabentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.cab/cabentry/_index.md @@ -3,7 +3,7 @@ title: Class CabEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Cab.CabEntry class. Represents single file within cab archive type: docs -weight: 140 +weight: 160 url: /net/aspose.zip.cab/cabentry/ --- ## CabEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.cpio/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.cpio/_index.md index 835617df9359..ea3c04c38369 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.cpio/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.cpio/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Cpio second_title: Aspose.ZIP for .NET API Reference description: The Cpio namespace contains classes which represent cpio archive related entities type: docs -weight: 50 +weight: 60 url: /net/aspose.zip.cpio/ --- The Cpio namespace contains classes which represent cpio archive related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.cpio/cpioarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.cpio/cpioarchive/_index.md index b729295fc95a..603eb4462a76 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.cpio/cpioarchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.cpio/cpioarchive/_index.md @@ -3,7 +3,7 @@ title: Class CpioArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Cpio.CpioArchive class. This class represents cpio archive file type: docs -weight: 170 +weight: 190 url: /net/aspose.zip.cpio/cpioarchive/ --- ## CpioArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.cpio/cpioentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.cpio/cpioentry/_index.md index beff4f61da14..ec6984233401 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.cpio/cpioentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.cpio/cpioentry/_index.md @@ -3,7 +3,7 @@ title: Class CpioEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Cpio.CpioEntry class. Represents single file within cpio archive type: docs -weight: 180 +weight: 200 url: /net/aspose.zip.cpio/cpioentry/ --- ## CpioEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.cpio/cpioformat/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.cpio/cpioformat/_index.md index f183233af998..48cc913aea2c 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.cpio/cpioformat/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.cpio/cpioformat/_index.md @@ -3,7 +3,7 @@ title: Enum CpioFormat second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Cpio.CpioFormat enum. Enumeration with supported formats of cpio type: docs -weight: 190 +weight: 210 url: /net/aspose.zip.cpio/cpioformat/ --- ## CpioFormat enumeration diff --git a/content/sites/aspose/zip/english/net/aspose.zip.crypto/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.crypto/_index.md index d7c1681dd6ae..d6190e6dedeb 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.crypto/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.crypto/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Crypto second_title: Aspose.ZIP for .NET API Reference description: The Crypto namespace contains classes for external encryption routines type: docs -weight: 60 +weight: 70 url: /net/aspose.zip.crypto/ --- The Crypto namespace contains classes for external encryption routines. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.crypto/sevenzipcipher/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.crypto/sevenzipcipher/_index.md index a5f2deca59ac..4fed80dbd618 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.crypto/sevenzipcipher/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.crypto/sevenzipcipher/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipCipher second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Crypto.SevenZipCipher class. Base class for AES cipher used for 7zip encryption type: docs -weight: 200 +weight: 220 url: /net/aspose.zip.crypto/sevenzipcipher/ --- ## SevenZipCipher class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.fastlz/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.fastlz/_index.md index c774d234e652..9dbb721c453a 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.fastlz/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.fastlz/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.FastLZ second_title: Aspose.ZIP for .NET API Reference description: The FastLZ namespace contains classes which represent FastLZ related entities type: docs -weight: 70 +weight: 80 url: /net/aspose.zip.fastlz/ --- The FastLZ namespace contains classes which represent FastLZ related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.fastlz/fastlzstream/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.fastlz/fastlzstream/_index.md index 435b62e501e6..0c7fffe9c573 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.fastlz/fastlzstream/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.fastlz/fastlzstream/_index.md @@ -3,7 +3,7 @@ title: Class FastLZStream second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.FastLZ.FastLZStream class. A stream wrapper that compresses data with FastLZ. Implements decorator pattern type: docs -weight: 220 +weight: 240 url: /net/aspose.zip.fastlz/fastlzstream/ --- ## FastLZStream class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.gzip/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.gzip/_index.md index 128d229f130a..1f47f6f33758 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.gzip/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.gzip/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Gzip second_title: Aspose.ZIP for .NET API Reference description: The Gzip namespace contains classes which represent gzip archive type: docs -weight: 80 +weight: 90 url: /net/aspose.zip.gzip/ --- The Gzip namespace contains classes which represent gzip archive. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.gzip/gziparchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.gzip/gziparchive/_index.md index 066c84f2560e..8a0cc5ea6cd8 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.gzip/gziparchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.gzip/gziparchive/_index.md @@ -3,7 +3,7 @@ title: Class GzipArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Gzip.GzipArchive class. This class represents gzip archive file. Use it to compose or extract gzip archives type: docs -weight: 230 +weight: 250 url: /net/aspose.zip.gzip/gziparchive/ --- ## GzipArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.iso/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.iso/_index.md index 9cb6e9e909bc..14c46c27dc92 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.iso/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.iso/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Iso second_title: Aspose.ZIP for .NET API Reference description: The Iso namespace contains classes which represent ISO related entities type: docs -weight: 90 +weight: 100 url: /net/aspose.zip.iso/ --- The Iso namespace contains classes which represent ISO related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.iso/entryeventargs/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.iso/entryeventargs/_index.md index 90099b39b086..f4c0e930817e 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.iso/entryeventargs/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.iso/entryeventargs/_index.md @@ -3,7 +3,7 @@ title: Class EntryEventArgs second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Iso.EntryEventArgs class. Event arguments for entry related events type: docs -weight: 260 +weight: 280 url: /net/aspose.zip.iso/entryeventargs/ --- ## EntryEventArgs class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.iso/eventsbag/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.iso/eventsbag/_index.md index b3631870de0e..335b1baf57b0 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.iso/eventsbag/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.iso/eventsbag/_index.md @@ -3,7 +3,7 @@ title: Class EventsBag second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Iso.EventsBag class. Events container used on IsoArchive saving type: docs -weight: 270 +weight: 290 url: /net/aspose.zip.iso/eventsbag/ --- ## EventsBag class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/_index.md index c76a23e0ff94..04bde0740df5 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/_index.md @@ -3,7 +3,7 @@ title: Class IsoArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Iso.IsoArchive class. Represents an ISO archive ISO 9660 type: docs -weight: 280 +weight: 300 url: /net/aspose.zip.iso/isoarchive/ --- ## IsoArchive class @@ -27,7 +27,6 @@ public sealed class IsoArchive : IArchive | Name | Description | | --- | --- | | [Entries](../../aspose.zip.iso/isoarchive/entries/) { get; } | Gets entries of [`IsoEntry`](../isoentry/) type constituting the archive. | -| [FileEntries](../../aspose.zip.iso/isoarchive/fileentries/) { get; } | Gets entries of [`IArchiveFileEntry`](../../aspose.zip/iarchivefileentry/) type constituting the archive. | ## Methods diff --git a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/createdirectory/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/createdirectory/_index.md index 56b93d55351b..864c75a9c678 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/createdirectory/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/createdirectory/_index.md @@ -3,7 +3,7 @@ title: IsoArchive.CreateDirectory second_title: Aspose.ZIP for .NET API Reference description: IsoArchive method. Adds a directory to the ISO image type: docs -weight: 40 +weight: 30 url: /net/aspose.zip.iso/isoarchive/createdirectory/ --- ## IsoArchive.CreateDirectory method diff --git a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/createentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/createentry/_index.md index 960ab58e84bf..45d00def255a 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/createentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/createentry/_index.md @@ -3,7 +3,7 @@ title: IsoArchive.CreateEntry second_title: Aspose.ZIP for .NET API Reference description: IsoArchive method. Adds a file to the ISO image type: docs -weight: 50 +weight: 40 url: /net/aspose.zip.iso/isoarchive/createentry/ --- ## CreateEntry(string, string) {#createentry_2} diff --git a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/dispose/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/dispose/_index.md index 9cd081beff66..e72db584d2c7 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/dispose/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/dispose/_index.md @@ -3,7 +3,7 @@ title: IsoArchive.Dispose second_title: Aspose.ZIP for .NET API Reference description: IsoArchive method. Performs applicationdefined tasks associated with freeing releasing or resetting unmanaged resources type: docs -weight: 60 +weight: 50 url: /net/aspose.zip.iso/isoarchive/dispose/ --- ## IsoArchive.Dispose method diff --git a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/extracttodirectory/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/extracttodirectory/_index.md index 257901ae3e25..920697338937 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/extracttodirectory/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/extracttodirectory/_index.md @@ -3,7 +3,7 @@ title: IsoArchive.ExtractToDirectory second_title: Aspose.ZIP for .NET API Reference description: IsoArchive method. Extracts all entries to the specified directory type: docs -weight: 70 +weight: 60 url: /net/aspose.zip.iso/isoarchive/extracttodirectory/ --- ## IsoArchive.ExtractToDirectory method diff --git a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/save/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/save/_index.md index 69dd8782da3c..d67783088d61 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/save/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoarchive/save/_index.md @@ -3,7 +3,7 @@ title: IsoArchive.Save second_title: Aspose.ZIP for .NET API Reference description: IsoArchive method. Saves the ISO image to the specified path type: docs -weight: 80 +weight: 70 url: /net/aspose.zip.iso/isoarchive/save/ --- ## Save(string, IsoSaveOptions) {#save_1} diff --git a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoentry/_index.md index 9c1fd460e017..887b379f3307 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoentry/_index.md @@ -3,7 +3,7 @@ title: Class IsoEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Iso.IsoEntry class. Represents an entry file or directory within an ISO archive type: docs -weight: 290 +weight: 310 url: /net/aspose.zip.iso/isoentry/ --- ## IsoEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoloadoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoloadoptions/_index.md index 05571b6965eb..24e1b729ff24 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.iso/isoloadoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.iso/isoloadoptions/_index.md @@ -3,7 +3,7 @@ title: Class IsoLoadOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Iso.IsoLoadOptions class. Options with which IsoArchive is loaded from compressed file. Contains event raised on extraction type: docs -weight: 300 +weight: 320 url: /net/aspose.zip.iso/isoloadoptions/ --- ## IsoLoadOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.iso/isosaveoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.iso/isosaveoptions/_index.md index 8a19b137140f..8dbeac81b89a 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.iso/isosaveoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.iso/isosaveoptions/_index.md @@ -3,7 +3,7 @@ title: Class IsoSaveOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Iso.IsoSaveOptions class. Options for saving an ISO archive type: docs -weight: 310 +weight: 330 url: /net/aspose.zip.iso/isosaveoptions/ --- ## IsoSaveOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lha/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lha/_index.md index 9ef31f618b25..0c64278df8c3 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lha/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lha/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Lha second_title: Aspose.ZIP for .NET API Reference description: The Lha namespace contains classes which represent Lha related entities type: docs -weight: 100 +weight: 110 url: /net/aspose.zip.lha/ --- The Lha namespace contains classes which represent Lha related entities. @@ -14,6 +14,5 @@ The Lha namespace contains classes which represent Lha related entities. | --- | --- | | [LhaArchive](./lhaarchive/) | This class represents LHA (.lzh) archive file. | | [LhaArchiveEntry](./lhaarchiveentry/) | Represents single file within Lha archive. | -| [LhaDirectoryEntry](./lhadirectoryentry/) | Represents an empty directory inside Lha archive. | diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/_index.md index e1e8af21457d..1b4a03280c43 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/_index.md @@ -3,7 +3,7 @@ title: Class LhaArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Lha.LhaArchive class. This class represents LHA .lzh archive file type: docs -weight: 340 +weight: 360 url: /net/aspose.zip.lha/lhaarchive/ --- ## LhaArchive class @@ -25,7 +25,6 @@ public class LhaArchive : IArchive | Name | Description | | --- | --- | -| [Directories](../../aspose.zip.lha/lhaarchive/directories/) { get; } | Gets directory entries of [`LhaDirectoryEntry`](../lhadirectoryentry/) type constituting the archive. | | [Entries](../../aspose.zip.lha/lhaarchive/entries/) { get; } | Gets file entries of [`LhaArchiveEntry`](../lhaarchiveentry/) type constituting the archive. | ## Methods diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/dispose/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/dispose/_index.md index 6300399aa30b..fcf683d7c5ab 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/dispose/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/dispose/_index.md @@ -3,7 +3,7 @@ title: LhaArchive.Dispose second_title: Aspose.ZIP for .NET API Reference description: LhaArchive method. type: docs -weight: 40 +weight: 30 url: /net/aspose.zip.lha/lhaarchive/dispose/ --- ## LhaArchive.Dispose method diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/entries/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/entries/_index.md index 04459b45c9c6..52941cc8f456 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/entries/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/entries/_index.md @@ -3,7 +3,7 @@ title: LhaArchive.Entries second_title: Aspose.ZIP for .NET API Reference description: LhaArchive property. Gets file entries of LhaArchiveEntry type constituting the archive type: docs -weight: 30 +weight: 20 url: /net/aspose.zip.lha/lhaarchive/entries/ --- ## LhaArchive.Entries property diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/extracttodirectory/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/extracttodirectory/_index.md index 04e6a3e382bb..64d9decaa215 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/extracttodirectory/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/extracttodirectory/_index.md @@ -3,7 +3,7 @@ title: LhaArchive.ExtractToDirectory second_title: Aspose.ZIP for .NET API Reference description: LhaArchive method. Extracts all the files and directories in the archive to the directory provided type: docs -weight: 50 +weight: 40 url: /net/aspose.zip.lha/lhaarchive/extracttodirectory/ --- ## LhaArchive.ExtractToDirectory method diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/lhaarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/lhaarchive/_index.md index dab891e665c8..4d1c89a8e664 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/lhaarchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchive/lhaarchive/_index.md @@ -24,6 +24,7 @@ public LhaArchive(Stream sourceStream) | --- | --- | | ArgumentNullException | *sourceStream* is null | | ArgumentException | *sourceStream* is unseekable. | +| InvalidDataException | Inappropriate data found. | ## Remarks diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/_index.md index ec5b44aabf50..9bc789efb88b 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/_index.md @@ -3,7 +3,7 @@ title: Class LhaArchiveEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Lha.LhaArchiveEntry class. Represents single file within Lha archive type: docs -weight: 350 +weight: 370 url: /net/aspose.zip.lha/lhaarchiveentry/ --- ## LhaArchiveEntry class @@ -18,8 +18,11 @@ public class LhaArchiveEntry : IArchiveFileEntry | Name | Description | | --- | --- | +| [IsDirectory](../../aspose.zip.lha/lhaarchiveentry/isdirectory/) { get; } | Gets a value indicating whether this entry directory. | +| [LastModified](../../aspose.zip.lha/lhaarchiveentry/lastmodified/) { get; } | Gets the last modified time of the entry. | | [Length](../../aspose.zip.lha/lhaarchiveentry/length/) { get; } | | | [Name](../../aspose.zip.lha/lhaarchiveentry/name/) { get; } | | +| [Path](../../aspose.zip.lha/lhaarchiveentry/path/) { get; } | Gets the full path to the entry. | ## Methods @@ -27,7 +30,7 @@ public class LhaArchiveEntry : IArchiveFileEntry | --- | --- | | [Extract](../../aspose.zip.lha/lhaarchiveentry/extract/#extract_1)(FileInfo) | Extracts Lha archive entry to a file. | | [Extract](../../aspose.zip.lha/lhaarchiveentry/extract/#extract_2)(Stream) | Extracts the entry to the stream provided. | -| [Extract](../../aspose.zip.lha/lhaarchiveentry/extract/#extract)(string) | Extracts Lha archive entry to a file by path. | +| [Extract](../../aspose.zip.lha/lhaarchiveentry/extract/#extract)(string) | Extracts Lha archive entry to a filesystem by path. | ### See Also diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/extract/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/extract/_index.md index 1b1fc525dc50..8865ada2a888 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/extract/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/extract/_index.md @@ -1,17 +1,17 @@ --- title: LhaArchiveEntry.Extract second_title: Aspose.ZIP for .NET API Reference -description: LhaArchiveEntry method. Extracts Lha archive entry to a file by path +description: LhaArchiveEntry method. Extracts Lha archive entry to a filesystem by path type: docs -weight: 30 +weight: 60 url: /net/aspose.zip.lha/lhaarchiveentry/extract/ --- ## Extract(string) {#extract} -Extracts Lha archive entry to a file by path. +Extracts Lha archive entry to a filesystem by path. ```csharp -public FileInfo Extract(string path) +public FileSystemInfo Extract(string path) ``` | Parameter | Type | Description | @@ -20,7 +20,7 @@ public FileInfo Extract(string path) ### Return Value -FileInfo instance containing extracted data. +FileSystemInfoInstance containing extracted data. ### Exceptions @@ -72,6 +72,10 @@ public void Extract(Stream destination) | --- | --- | | ArgumentException | *destination* does not support writing. | +## Remarks + +Does nothing for directory entry. + ### See Also * class [LhaArchiveEntry](../) @@ -105,6 +109,10 @@ public void Extract(FileInfo fileInfo) | DirectoryNotFoundException | The specified path is invalid, such as being on an unmapped drive. | | IOException | The file is already open. | +## Remarks + +Does nothing for directory entry. + ## Examples ```csharp diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/isdirectory/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/isdirectory/_index.md new file mode 100644 index 000000000000..92ee6e2f795b --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/isdirectory/_index.md @@ -0,0 +1,23 @@ +--- +title: LhaArchiveEntry.IsDirectory +second_title: Aspose.ZIP for .NET API Reference +description: LhaArchiveEntry property. Gets a value indicating whether this entry directory +type: docs +weight: 10 +url: /net/aspose.zip.lha/lhaarchiveentry/isdirectory/ +--- +## LhaArchiveEntry.IsDirectory property + +Gets a value indicating whether this entry directory. + +```csharp +public bool IsDirectory { get; } +``` + +### See Also + +* class [LhaArchiveEntry](../) +* namespace [Aspose.Zip.Lha](../../lhaarchiveentry/) +* assembly [Aspose.Zip](../../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/lastmodified/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/lastmodified/_index.md new file mode 100644 index 000000000000..2edeae6195a0 --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/lastmodified/_index.md @@ -0,0 +1,23 @@ +--- +title: LhaArchiveEntry.LastModified +second_title: Aspose.ZIP for .NET API Reference +description: LhaArchiveEntry property. Gets the last modified time of the entry +type: docs +weight: 20 +url: /net/aspose.zip.lha/lhaarchiveentry/lastmodified/ +--- +## LhaArchiveEntry.LastModified property + +Gets the last modified time of the entry. + +```csharp +public DateTime LastModified { get; } +``` + +### See Also + +* class [LhaArchiveEntry](../) +* namespace [Aspose.Zip.Lha](../../lhaarchiveentry/) +* assembly [Aspose.Zip](../../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/length/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/length/_index.md index b41ee7aabfbd..5e13eff7a3ed 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/length/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/length/_index.md @@ -3,7 +3,7 @@ title: LhaArchiveEntry.Length second_title: Aspose.ZIP for .NET API Reference description: LhaArchiveEntry property. type: docs -weight: 10 +weight: 30 url: /net/aspose.zip.lha/lhaarchiveentry/length/ --- ## LhaArchiveEntry.Length property diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/name/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/name/_index.md index c95010c82114..f24b78c06ddd 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/name/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/name/_index.md @@ -3,7 +3,7 @@ title: LhaArchiveEntry.Name second_title: Aspose.ZIP for .NET API Reference description: LhaArchiveEntry property. type: docs -weight: 20 +weight: 40 url: /net/aspose.zip.lha/lhaarchiveentry/name/ --- ## LhaArchiveEntry.Name property diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/path/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/path/_index.md new file mode 100644 index 000000000000..13011b04dd9c --- /dev/null +++ b/content/sites/aspose/zip/english/net/aspose.zip.lha/lhaarchiveentry/path/_index.md @@ -0,0 +1,23 @@ +--- +title: LhaArchiveEntry.Path +second_title: Aspose.ZIP for .NET API Reference +description: LhaArchiveEntry property. Gets the full path to the entry +type: docs +weight: 50 +url: /net/aspose.zip.lha/lhaarchiveentry/path/ +--- +## LhaArchiveEntry.Path property + +Gets the full path to the entry. + +```csharp +public string Path { get; } +``` + +### See Also + +* class [LhaArchiveEntry](../) +* namespace [Aspose.Zip.Lha](../../lhaarchiveentry/) +* assembly [Aspose.Zip](../../../) + + diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lzip/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lzip/_index.md index 77547d0afee6..6b66677b0ad8 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lzip/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lzip/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Lzip second_title: Aspose.ZIP for .NET API Reference description: The Lzip namespace contains classes which represent lzip archive related entities type: docs -weight: 110 +weight: 120 url: /net/aspose.zip.lzip/ --- The Lzip namespace contains classes which represent lzip archive related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lzip/lziparchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lzip/lziparchive/_index.md index 6abe67197923..a1231af582bb 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lzip/lziparchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lzip/lziparchive/_index.md @@ -3,7 +3,7 @@ title: Class LzipArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Lzip.LzipArchive class. This class represents Lzip archive file. Use it to compose or extract Lzip archives type: docs -weight: 380 +weight: 390 url: /net/aspose.zip.lzip/lziparchive/ --- ## LzipArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lzip/lziparchivesettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lzip/lziparchivesettings/_index.md index 22dd1c19b9ac..aa55215cf754 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lzip/lziparchivesettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lzip/lziparchivesettings/_index.md @@ -3,7 +3,7 @@ title: Class LzipArchiveSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Lzip.LzipArchiveSettings class. The class contains setting of particular lzip archive type: docs -weight: 390 +weight: 400 url: /net/aspose.zip.lzip/lziparchivesettings/ --- ## LzipArchiveSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lzma/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lzma/_index.md index 877231e433fa..1efd416f9cda 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lzma/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lzma/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.LZMA second_title: Aspose.ZIP for .NET API Reference description: The LZMA namespace contains classes which represent lzma archive related entities type: docs -weight: 120 +weight: 130 url: /net/aspose.zip.lzma/ --- The LZMA namespace contains classes which represent lzma archive related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lzma/lzmaarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lzma/lzmaarchive/_index.md index 177213f305f4..b02d2002f199 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lzma/lzmaarchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lzma/lzmaarchive/_index.md @@ -3,7 +3,7 @@ title: Class LzmaArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.LZMA.LzmaArchive class. This class represents LZMA archive file. Use it to compose or extract LZMA archives type: docs -weight: 320 +weight: 340 url: /net/aspose.zip.lzma/lzmaarchive/ --- ## LzmaArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.lzma/lzmaarchivesettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.lzma/lzmaarchivesettings/_index.md index 68f0372bf540..ebe8d839b849 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.lzma/lzmaarchivesettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.lzma/lzmaarchivesettings/_index.md @@ -3,7 +3,7 @@ title: Class LzmaArchiveSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.LZMA.LzmaArchiveSettings class. Settings for lzma archive type: docs -weight: 330 +weight: 350 url: /net/aspose.zip.lzma/lzmaarchivesettings/ --- ## LzmaArchiveSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.rar/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.rar/_index.md index d9679c730caf..75ad235b039b 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.rar/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.rar/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Rar second_title: Aspose.ZIP for .NET API Reference description: The Rar namespace contains classes which represent RAR archive related entities type: docs -weight: 130 +weight: 140 url: /net/aspose.zip.rar/ --- The Rar namespace contains classes which represent RAR archive related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchive/_index.md index 7e387720a19a..ec8df5f407e7 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchive/_index.md @@ -3,7 +3,7 @@ title: Class RarArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Rar.RarArchive class. This class represents RAR archive file. Use it to extract RAR archives type: docs -weight: 420 +weight: 430 url: /net/aspose.zip.rar/rararchive/ --- ## RarArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchive/rararchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchive/rararchive/_index.md index 7ac7972d85e4..c12f07e9af61 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchive/rararchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchive/rararchive/_index.md @@ -83,7 +83,6 @@ public RarArchive(Stream sourceStream, RarArchiveLoadOptions loadOptions = null) | --- | --- | | ArgumentException | *sourceStream* is not seekable. | | InvalidDataException | Wrong signature for archive. - or - The file is not a RAR archive. | -| InvalidOperationException | | ## Remarks diff --git a/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveentry/_index.md index 961e3d7cf533..0ae6d74df2ec 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveentry/_index.md @@ -3,7 +3,7 @@ title: Class RarArchiveEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Rar.RarArchiveEntry class. Represents single file within archive type: docs -weight: 430 +weight: 440 url: /net/aspose.zip.rar/rararchiveentry/ --- ## RarArchiveEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveentryencrypted/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveentryencrypted/_index.md index 840223ad053b..2d5c43682a21 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveentryencrypted/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveentryencrypted/_index.md @@ -3,7 +3,7 @@ title: Class RarArchiveEntryEncrypted second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Rar.RarArchiveEntryEncrypted class. Zip entry that needs to be decompressed with decryption type: docs -weight: 440 +weight: 450 url: /net/aspose.zip.rar/rararchiveentryencrypted/ --- ## RarArchiveEntryEncrypted class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveentryplain/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveentryplain/_index.md index d358518925f5..324c1a807c49 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveentryplain/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveentryplain/_index.md @@ -3,7 +3,7 @@ title: Class RarArchiveEntryPlain second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Rar.RarArchiveEntryPlain class. Rar entry that needs to be decompressed without decryption type: docs -weight: 450 +weight: 460 url: /net/aspose.zip.rar/rararchiveentryplain/ --- ## RarArchiveEntryPlain class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveloadoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveloadoptions/_index.md index bbf32c0c61bb..0a40a0827622 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveloadoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.rar/rararchiveloadoptions/_index.md @@ -3,7 +3,7 @@ title: Class RarArchiveLoadOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Rar.RarArchiveLoadOptions class. Options with which RarArchive is loaded from compressed file type: docs -weight: 460 +weight: 470 url: /net/aspose.zip.rar/rararchiveloadoptions/ --- ## RarArchiveLoadOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/_index.md index 6cd10f7d3c3d..9536122fdf0d 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Saving second_title: Aspose.ZIP for .NET API Reference description: The Saving namespace contains classes which are needed for operations entailing saving the archive type: docs -weight: 140 +weight: 150 url: /net/aspose.zip.saving/ --- The Saving namespace contains classes which are needed for operations entailing saving the archive. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/aesecryptionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/aesecryptionsettings/_index.md index abe8ea54eddf..a247ad1d0a3e 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/aesecryptionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/aesecryptionsettings/_index.md @@ -3,7 +3,7 @@ title: Class AesEcryptionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.AesEcryptionSettings class. Settings for AES encryption or decryption algorithm type: docs -weight: 470 +weight: 480 url: /net/aspose.zip.saving/aesecryptionsettings/ --- ## AesEcryptionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/archiveentrysettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/archiveentrysettings/_index.md index 503b449aab86..23c3cd2d188d 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/archiveentrysettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/archiveentrysettings/_index.md @@ -3,7 +3,7 @@ title: Class ArchiveEntrySettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.ArchiveEntrySettings class. Settings used to compress or decompress entries type: docs -weight: 480 +weight: 490 url: /net/aspose.zip.saving/archiveentrysettings/ --- ## ArchiveEntrySettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/archivesaveoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/archivesaveoptions/_index.md index 56d64ba429aa..cc3955e5502f 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/archivesaveoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/archivesaveoptions/_index.md @@ -3,7 +3,7 @@ title: Class ArchiveSaveOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.ArchiveSaveOptions class. Options for saving a zip archive type: docs -weight: 490 +weight: 500 url: /net/aspose.zip.saving/archivesaveoptions/ --- ## ArchiveSaveOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/bzip2compressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/bzip2compressionsettings/_index.md index 38bac27b13c1..afbf0438e462 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/bzip2compressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/bzip2compressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class Bzip2CompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.Bzip2CompressionSettings class. Settings for Bzip2 compression method type: docs -weight: 500 +weight: 510 url: /net/aspose.zip.saving/bzip2compressionsettings/ --- ## Bzip2CompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/compressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/compressionsettings/_index.md index 888671dc1f2a..9def16d915dd 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/compressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/compressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class CompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.CompressionSettings class. Settings needed for compressor or decompressor to work type: docs -weight: 510 +weight: 520 url: /net/aspose.zip.saving/compressionsettings/ --- ## CompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/deflatecompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/deflatecompressionsettings/_index.md index 324e77c5b417..272481816f2b 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/deflatecompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/deflatecompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class DeflateCompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.DeflateCompressionSettings class. Settings for Deflate compression method type: docs -weight: 520 +weight: 530 url: /net/aspose.zip.saving/deflatecompressionsettings/ --- ## DeflateCompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/encryptionmethod/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/encryptionmethod/_index.md index 2a560211899a..1f310f41ded4 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/encryptionmethod/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/encryptionmethod/_index.md @@ -3,7 +3,7 @@ title: Enum EncryptionMethod second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.EncryptionMethod enum. Encryption/decryption methods can be used with zip archive type: docs -weight: 530 +weight: 540 url: /net/aspose.zip.saving/encryptionmethod/ --- ## EncryptionMethod enumeration diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/encryptionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/encryptionsettings/_index.md index fff0fa3ff41c..ccf45f39403d 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/encryptionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/encryptionsettings/_index.md @@ -3,7 +3,7 @@ title: Class EncryptionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.EncryptionSettings class. Base class for settings for several zip encryption methods type: docs -weight: 540 +weight: 550 url: /net/aspose.zip.saving/encryptionsettings/ --- ## EncryptionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/enhanceddeflatecompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/enhanceddeflatecompressionsettings/_index.md index 2c8846d7d5c0..08de535e3adb 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/enhanceddeflatecompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/enhanceddeflatecompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class EnhancedDeflateCompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.EnhancedDeflateCompressionSettings class. Settings for Enhanced Deflate compression method type: docs -weight: 550 +weight: 560 url: /net/aspose.zip.saving/enhanceddeflatecompressionsettings/ --- ## EnhancedDeflateCompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/eventsbag/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/eventsbag/_index.md index bc79dbd2d995..03f4814b8949 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/eventsbag/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/eventsbag/_index.md @@ -3,7 +3,7 @@ title: Class EventsBag second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.EventsBag class. Events container used on Archive saving type: docs -weight: 560 +weight: 570 url: /net/aspose.zip.saving/eventsbag/ --- ## EventsBag class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/lzmacompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/lzmacompressionsettings/_index.md index df8189aedc85..e9ff25dae2ef 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/lzmacompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/lzmacompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class LzmaCompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.LzmaCompressionSettings class. Settings for LZMA compression method type: docs -weight: 570 +weight: 580 url: /net/aspose.zip.saving/lzmacompressionsettings/ --- ## LzmaCompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/parallelcompressionmode/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/parallelcompressionmode/_index.md index 5c1bced93a18..eb8e0ab15548 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/parallelcompressionmode/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/parallelcompressionmode/_index.md @@ -3,7 +3,7 @@ title: Enum ParallelCompressionMode second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.ParallelCompressionMode enum. Options of usage parallel compression facility type: docs -weight: 590 +weight: 600 url: /net/aspose.zip.saving/parallelcompressionmode/ --- ## ParallelCompressionMode enumeration diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/paralleloptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/paralleloptions/_index.md index 629700e786ad..7d9651f89afe 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/paralleloptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/paralleloptions/_index.md @@ -3,7 +3,7 @@ title: Class ParallelOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.ParallelOptions class. Options for parallel compression type: docs -weight: 600 +weight: 610 url: /net/aspose.zip.saving/paralleloptions/ --- ## ParallelOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/ppmdcompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/ppmdcompressionsettings/_index.md index 451d66782429..40e0c28bdcdf 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/ppmdcompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/ppmdcompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class PPMdCompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.PPMdCompressionSettings class. Settings for PPMd compression method type: docs -weight: 580 +weight: 590 url: /net/aspose.zip.saving/ppmdcompressionsettings/ --- ## PPMdCompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/selfextractoroptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/selfextractoroptions/_index.md index e5b4ab617298..dc07cf178db1 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/selfextractoroptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/selfextractoroptions/_index.md @@ -3,7 +3,7 @@ title: Class SelfExtractorOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.SelfExtractorOptions class. Options for creation of selfextracting executable archive type: docs -weight: 610 +weight: 620 url: /net/aspose.zip.saving/selfextractoroptions/ --- ## SelfExtractorOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipaesencryptionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipaesencryptionsettings/_index.md index 2b2afa8c2640..be4c3bf5be99 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipaesencryptionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipaesencryptionsettings/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipAESEncryptionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.SevenZipAESEncryptionSettings class. Settings for AES encryption or decryption algorithm type: docs -weight: 620 +weight: 630 url: /net/aspose.zip.saving/sevenzipaesencryptionsettings/ --- ## SevenZipAESEncryptionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipbzip2compressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipbzip2compressionsettings/_index.md index 8dc3bd335295..b66643234539 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipbzip2compressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipbzip2compressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipBZip2CompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.SevenZipBZip2CompressionSettings class. Settings for BZip2 compression method within 7z archive type: docs -weight: 630 +weight: 640 url: /net/aspose.zip.saving/sevenzipbzip2compressionsettings/ --- ## SevenZipBZip2CompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipcompressionmethod/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipcompressionmethod/_index.md index eea82299aeed..1b83ab4fa3c3 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipcompressionmethod/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipcompressionmethod/_index.md @@ -3,7 +3,7 @@ title: Enum SevenZipCompressionMethod second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.SevenZipCompressionMethod enum. Methods of compression that 7Z format support type: docs -weight: 640 +weight: 650 url: /net/aspose.zip.saving/sevenzipcompressionmethod/ --- ## SevenZipCompressionMethod enumeration @@ -25,6 +25,7 @@ public enum SevenZipCompressionMethod : ushort | BZip2 | `4` | File is compressed using Bzip2. | | BCJ | `5` | Technique that improves the compression of machine code. | | AES | `6` | File is encrypted. | +| Delta | `7` | File is encoded using Delta converter. | ### See Also diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipcompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipcompressionsettings/_index.md index be2f4881645f..ef13687b8a98 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipcompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipcompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipCompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.SevenZipCompressionSettings class. Settings needed for 7z compressor or decompressor to work type: docs -weight: 650 +weight: 660 url: /net/aspose.zip.saving/sevenzipcompressionsettings/ --- ## SevenZipCompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipencryptionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipencryptionsettings/_index.md index cc65eb7c80ee..5a7ae4cb04f2 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipencryptionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipencryptionsettings/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipEncryptionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.SevenZipEncryptionSettings class. Base class for settings for several 7z encryption methods type: docs -weight: 660 +weight: 670 url: /net/aspose.zip.saving/sevenzipencryptionsettings/ --- ## SevenZipEncryptionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipentrysettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipentrysettings/_index.md index 1da6e26a57d9..5eab1cac7703 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipentrysettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipentrysettings/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipEntrySettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.SevenZipEntrySettings class. Settings used to compress or decompress 7Z entries type: docs -weight: 670 +weight: 680 url: /net/aspose.zip.saving/sevenzipentrysettings/ --- ## SevenZipEntrySettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenziplzma2compressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenziplzma2compressionsettings/_index.md index 7e8ad5cf9538..50b0ff658d77 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenziplzma2compressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenziplzma2compressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipLZMA2CompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.SevenZipLZMA2CompressionSettings class. Settings for LZMA2 compression method within 7z archive type: docs -weight: 680 +weight: 690 url: /net/aspose.zip.saving/sevenziplzma2compressionsettings/ --- ## SevenZipLZMA2CompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenziplzmacompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenziplzmacompressionsettings/_index.md index aa07a5063626..861da6f94fae 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenziplzmacompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenziplzmacompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipLZMACompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.SevenZipLZMACompressionSettings class. Settings for LZMA compression method within 7z archive type: docs -weight: 690 +weight: 700 url: /net/aspose.zip.saving/sevenziplzmacompressionsettings/ --- ## SevenZipLZMACompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipppmdcompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipppmdcompressionsettings/_index.md index 3fb996b92065..5f2520ec8c6b 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipppmdcompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipppmdcompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipPPMdCompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.SevenZipPPMdCompressionSettings class. Settings for PPMd compression method within 7z archive type: docs -weight: 700 +weight: 710 url: /net/aspose.zip.saving/sevenzipppmdcompressionsettings/ --- ## SevenZipPPMdCompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipstorecompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipstorecompressionsettings/_index.md index a8da3194c8e4..f3b21f5c3d37 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipstorecompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/sevenzipstorecompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipStoreCompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.SevenZipStoreCompressionSettings class. Settings for Store compression method within 7z archive type: docs -weight: 710 +weight: 720 url: /net/aspose.zip.saving/sevenzipstorecompressionsettings/ --- ## SevenZipStoreCompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/splitarchivesaveoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/splitarchivesaveoptions/_index.md index 60f3ea003c40..a2acb3c98c2e 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/splitarchivesaveoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/splitarchivesaveoptions/_index.md @@ -3,7 +3,7 @@ title: Class SplitArchiveSaveOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.SplitArchiveSaveOptions class. Options for saving a multivolume zip archive type: docs -weight: 720 +weight: 730 url: /net/aspose.zip.saving/splitarchivesaveoptions/ --- ## SplitArchiveSaveOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/splitsevenziparchivesaveoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/splitsevenziparchivesaveoptions/_index.md index a7f4caf5bb79..018196c66200 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/splitsevenziparchivesaveoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/splitsevenziparchivesaveoptions/_index.md @@ -3,7 +3,7 @@ title: Class SplitSevenZipArchiveSaveOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.SplitSevenZipArchiveSaveOptions class. Options for saving a multivolume 7zip archive type: docs -weight: 730 +weight: 740 url: /net/aspose.zip.saving/splitsevenziparchivesaveoptions/ --- ## SplitSevenZipArchiveSaveOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/storecompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/storecompressionsettings/_index.md index 7571d347654d..2da6912497b0 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/storecompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/storecompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class StoreCompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.StoreCompressionSettings class. Settings for Store compression method type: docs -weight: 740 +weight: 750 url: /net/aspose.zip.saving/storecompressionsettings/ --- ## StoreCompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/traditionalencryptionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/traditionalencryptionsettings/_index.md index 9b30f92c56a3..1c3265b18d0d 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/traditionalencryptionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/traditionalencryptionsettings/_index.md @@ -3,7 +3,7 @@ title: Class TraditionalEncryptionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.TraditionalEncryptionSettings class. Settings for traditional ZipCrypto algorithm type: docs -weight: 750 +weight: 760 url: /net/aspose.zip.saving/traditionalencryptionsettings/ --- ## TraditionalEncryptionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/xzcompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/xzcompressionsettings/_index.md index f3b4bc151fd3..f8770ea62274 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/xzcompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/xzcompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class XzCompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.XzCompressionSettings class. Settings for Xz compression method type: docs -weight: 760 +weight: 770 url: /net/aspose.zip.saving/xzcompressionsettings/ --- ## XzCompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.saving/zstandardcompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.saving/zstandardcompressionsettings/_index.md index e48a6adca669..70f751ee7482 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.saving/zstandardcompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.saving/zstandardcompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class ZstandardCompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Saving.ZstandardCompressionSettings class. Settings for Zstandard compression method type: docs -weight: 770 +weight: 780 url: /net/aspose.zip.saving/zstandardcompressionsettings/ --- ## ZstandardCompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/_index.md index 8d38f40e8abb..04841233477d 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.SevenZip second_title: Aspose.ZIP for .NET API Reference description: The SevenZip namespace contains classes which represent 7z archive related entities type: docs -weight: 150 +weight: 160 url: /net/aspose.zip.sevenzip/ --- The SevenZip namespace contains classes which represent 7z archive related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchive/_index.md index a4f498ccc61b..a47fa50aea63 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchive/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.SevenZip.SevenZipArchive class. This class represents 7z archive file. Use it to compose and extract 7z archives type: docs -weight: 780 +weight: 790 url: /net/aspose.zip.sevenzip/sevenziparchive/ --- ## SevenZipArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchiveentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchiveentry/_index.md index 9d5c6ee801db..897378b57b59 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchiveentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchiveentry/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipArchiveEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.SevenZip.SevenZipArchiveEntry class. Represents single file within 7z archive type: docs -weight: 790 +weight: 800 url: /net/aspose.zip.sevenzip/sevenziparchiveentry/ --- ## SevenZipArchiveEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchiveentryencrypted/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchiveentryencrypted/_index.md index 5c7f52fe09c7..7cf07ce014eb 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchiveentryencrypted/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchiveentryencrypted/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipArchiveEntryEncrypted second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.SevenZip.SevenZipArchiveEntryEncrypted class. SevenZip archive entry that needs to be compressed with encryption or decompressed with decryption type: docs -weight: 800 +weight: 810 url: /net/aspose.zip.sevenzip/sevenziparchiveentryencrypted/ --- ## SevenZipArchiveEntryEncrypted class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchiveentryplain/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchiveentryplain/_index.md index ab93e07ceca9..4ca06fa737d2 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchiveentryplain/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.sevenzip/sevenziparchiveentryplain/_index.md @@ -3,7 +3,7 @@ title: Class SevenZipArchiveEntryPlain second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.SevenZip.SevenZipArchiveEntryPlain class. SevenZip entry that needs to be compressed without encryption or decompressed without decryption type: docs -weight: 810 +weight: 820 url: /net/aspose.zip.sevenzip/sevenziparchiveentryplain/ --- ## SevenZipArchiveEntryPlain class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.shar/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.shar/_index.md index 9714b78e3d84..cb5a08c9908e 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.shar/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.shar/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Shar second_title: Aspose.ZIP for .NET API Reference description: The Shar namespace contains classes which represent shar archive related entities type: docs -weight: 160 +weight: 170 url: /net/aspose.zip.shar/ --- The Shar namespace contains classes which represent shar archive related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.shar/shararchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.shar/shararchive/_index.md index 8c13bd3498fd..ec9a8b0531be 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.shar/shararchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.shar/shararchive/_index.md @@ -3,7 +3,7 @@ title: Class SharArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Shar.SharArchive class. This class represents shar archive file type: docs -weight: 820 +weight: 830 url: /net/aspose.zip.shar/shararchive/ --- ## SharArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.shar/sharentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.shar/sharentry/_index.md index 2903e547e39b..6532bbd5f93b 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.shar/sharentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.shar/sharentry/_index.md @@ -3,7 +3,7 @@ title: Class SharEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Shar.SharEntry class. Represents single file within shar archive type: docs -weight: 830 +weight: 840 url: /net/aspose.zip.shar/sharentry/ --- ## SharEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.snappy/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.snappy/_index.md index 32d1c1a8a525..c4e8d19c87c4 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.snappy/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.snappy/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Snappy second_title: Aspose.ZIP for .NET API Reference description: The Snappy namespace contains classes for Snappy compressed data manipulation type: docs -weight: 170 +weight: 180 url: /net/aspose.zip.snappy/ --- The Snappy namespace contains classes for Snappy compressed data manipulation. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.snappy/snappyarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.snappy/snappyarchive/_index.md index 2dce15da2191..334a13bc083e 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.snappy/snappyarchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.snappy/snappyarchive/_index.md @@ -3,7 +3,7 @@ title: Class SnappyArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Snappy.SnappyArchive class. This class represents snappy archive file. Use it to compose or extract snappy archives type: docs -weight: 840 +weight: 850 url: /net/aspose.zip.snappy/snappyarchive/ --- ## SnappyArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.tar/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.tar/_index.md index 9a4f8088c59b..bc26c224e770 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.tar/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.tar/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Tar second_title: Aspose.ZIP for .NET API Reference description: The Tar namespace contains classes which represent tar archive related entities type: docs -weight: 180 +weight: 190 url: /net/aspose.zip.tar/ --- The Tar namespace contains classes which represent tar archive related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.tar/tararchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.tar/tararchive/_index.md index 041f5300f315..8e2db11c41df 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.tar/tararchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.tar/tararchive/_index.md @@ -3,7 +3,7 @@ title: Class TarArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Tar.TarArchive class. This class represents tar archive file. Use it to compose extract or update tar archives type: docs -weight: 850 +weight: 860 url: /net/aspose.zip.tar/tararchive/ --- ## TarArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.tar/tarentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.tar/tarentry/_index.md index e320d25d9ec1..8b1c7585d3d7 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.tar/tarentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.tar/tarentry/_index.md @@ -3,7 +3,7 @@ title: Class TarEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Tar.TarEntry class. Represents single file within tar archive type: docs -weight: 860 +weight: 870 url: /net/aspose.zip.tar/tarentry/ --- ## TarEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.tar/tarformat/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.tar/tarformat/_index.md index 606844fee66e..78e2522f209f 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.tar/tarformat/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.tar/tarformat/_index.md @@ -3,7 +3,7 @@ title: Enum TarFormat second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Tar.TarFormat enum. Enumeration with supported formats of TarArchive type: docs -weight: 870 +weight: 880 url: /net/aspose.zip.tar/tarformat/ --- ## TarFormat enumeration diff --git a/content/sites/aspose/zip/english/net/aspose.zip.uue/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.uue/_index.md index b9c18858d04e..111e571ac168 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.uue/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.uue/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Uue second_title: Aspose.ZIP for .NET API Reference description: The Uue namespace contains classes which represent uuencode related entities type: docs -weight: 190 +weight: 200 url: /net/aspose.zip.uue/ --- The Uue namespace contains classes which represent uuencode related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.uue/uuearchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.uue/uuearchive/_index.md index c8bc98dd268b..9ac44ecc8a9e 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.uue/uuearchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.uue/uuearchive/_index.md @@ -3,7 +3,7 @@ title: Class UueArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Uue.UueArchive class. This class represents uuencoded file type: docs -weight: 880 +weight: 890 url: /net/aspose.zip.uue/uuearchive/ --- ## UueArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.uue/uuesaveoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.uue/uuesaveoptions/_index.md index 982a06bd4d44..86e242ba9004 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.uue/uuesaveoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.uue/uuesaveoptions/_index.md @@ -3,7 +3,7 @@ title: Class UueSaveOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Uue.UueSaveOptions class. Options for saving an uuencoded file type: docs -weight: 890 +weight: 900 url: /net/aspose.zip.uue/uuesaveoptions/ --- ## UueSaveOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.wim/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.wim/_index.md index a4127cf2a155..31e0cf898f8f 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.wim/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.wim/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Wim second_title: Aspose.ZIP for .NET API Reference description: The Wim namespace contains classes which represent WIM archive related entities type: docs -weight: 200 +weight: 210 url: /net/aspose.zip.wim/ --- The Wim namespace contains classes which represent WIM archive related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.wim/wimarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.wim/wimarchive/_index.md index 86b2d40085d0..7d9e590d73df 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.wim/wimarchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.wim/wimarchive/_index.md @@ -3,7 +3,7 @@ title: Class WimArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Wim.WimArchive class. This class represents wim archive file type: docs -weight: 900 +weight: 910 url: /net/aspose.zip.wim/wimarchive/ --- ## WimArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.wim/wimdirectoryentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.wim/wimdirectoryentry/_index.md index 620c98521a22..cdcefec52a34 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.wim/wimdirectoryentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.wim/wimdirectoryentry/_index.md @@ -3,7 +3,7 @@ title: Class WimDirectoryEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Wim.WimDirectoryEntry class. Represents single directory within wim archive type: docs -weight: 910 +weight: 920 url: /net/aspose.zip.wim/wimdirectoryentry/ --- ## WimDirectoryEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.wim/wimentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.wim/wimentry/_index.md index 4b62b6c7a12d..2bdf76d7d0ea 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.wim/wimentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.wim/wimentry/_index.md @@ -3,7 +3,7 @@ title: Class WimEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Wim.WimEntry class. Represents single file or directory within wim image type: docs -weight: 920 +weight: 930 url: /net/aspose.zip.wim/wimentry/ --- ## WimEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.wim/wimfileentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.wim/wimfileentry/_index.md index 98d613390f95..7df9de449851 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.wim/wimfileentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.wim/wimfileentry/_index.md @@ -3,7 +3,7 @@ title: Class WimFileEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Wim.WimFileEntry class. Represents single file within wim archive type: docs -weight: 930 +weight: 940 url: /net/aspose.zip.wim/wimfileentry/ --- ## WimFileEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.wim/wimimage/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.wim/wimimage/_index.md index 5681314b1a0e..d80c99730f93 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.wim/wimimage/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.wim/wimimage/_index.md @@ -3,7 +3,7 @@ title: Class WimImage second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Wim.WimImage class. Represents single image within wim archive type: docs -weight: 940 +weight: 950 url: /net/aspose.zip.wim/wimimage/ --- ## WimImage class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/_index.md index aafd45b0aa39..cdf73d7f088b 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Xar second_title: Aspose.ZIP for .NET API Reference description: The Xar namespace contains classes which represent Xar archive related entities type: docs -weight: 210 +weight: 220 url: /net/aspose.zip.xar/ --- The Xar namespace contains classes which represent Xar archive related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/cancelentryeventargs/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/cancelentryeventargs/_index.md index 93ee1d5aca58..91166ab7b169 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/cancelentryeventargs/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/cancelentryeventargs/_index.md @@ -3,7 +3,7 @@ title: Class CancelEntryEventArgs second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xar.CancelEntryEventArgs class. Event arguments for cancelable entry related events type: docs -weight: 950 +weight: 960 url: /net/aspose.zip.xar/cancelentryeventargs/ --- ## CancelEntryEventArgs class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/entryeventargs/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/entryeventargs/_index.md index e385759b4e0a..95ee94d59c71 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/entryeventargs/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/entryeventargs/_index.md @@ -3,7 +3,7 @@ title: Class EntryEventArgs second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xar.EntryEventArgs class. Event arguments for entry related events type: docs -weight: 960 +weight: 970 url: /net/aspose.zip.xar/entryeventargs/ --- ## EntryEventArgs class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/eventsbag/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/eventsbag/_index.md index b31e8fe48994..7084600b4fcb 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/eventsbag/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/eventsbag/_index.md @@ -3,7 +3,7 @@ title: Class EventsBag second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xar.EventsBag class. Events container used on XarArchive saving type: docs -weight: 970 +weight: 980 url: /net/aspose.zip.xar/eventsbag/ --- ## EventsBag class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/xararchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/xararchive/_index.md index 16c0066122a7..58a2a75e945d 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/xararchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/xararchive/_index.md @@ -3,7 +3,7 @@ title: Class XarArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xar.XarArchive class. This class represents xar archive file type: docs -weight: 980 +weight: 990 url: /net/aspose.zip.xar/xararchive/ --- ## XarArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarbzip2compressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarbzip2compressionsettings/_index.md index 288f267afcad..b9766969073a 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarbzip2compressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarbzip2compressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class XarBzip2CompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xar.XarBzip2CompressionSettings class. Settings for Bzip2 compression method type: docs -weight: 990 +weight: 1000 url: /net/aspose.zip.xar/xarbzip2compressionsettings/ --- ## XarBzip2CompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarcompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarcompressionsettings/_index.md index 4eec6f8c5532..4d11c96c856e 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarcompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarcompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class XarCompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xar.XarCompressionSettings class. Settings needed for compressor to work type: docs -weight: 1000 +weight: 1010 url: /net/aspose.zip.xar/xarcompressionsettings/ --- ## XarCompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/xardirectoryentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/xardirectoryentry/_index.md index 1abd711d18ec..6a78e6a2a4f0 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/xardirectoryentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/xardirectoryentry/_index.md @@ -3,7 +3,7 @@ title: Class XarDirectoryEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xar.XarDirectoryEntry class. Represents directory entry within xar archive type: docs -weight: 1010 +weight: 1020 url: /net/aspose.zip.xar/xardirectoryentry/ --- ## XarDirectoryEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarentry/_index.md index 0065dafcb4fe..9a91a5459063 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarentry/_index.md @@ -3,7 +3,7 @@ title: Class XarEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xar.XarEntry class. Represents single entry within xar archive type: docs -weight: 1020 +weight: 1030 url: /net/aspose.zip.xar/xarentry/ --- ## XarEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarfileentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarfileentry/_index.md index ebe2965c2e66..4871bcd4bb3d 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarfileentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarfileentry/_index.md @@ -3,7 +3,7 @@ title: Class XarFileEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xar.XarFileEntry class. Represents file entry within xar archive type: docs -weight: 1030 +weight: 1040 url: /net/aspose.zip.xar/xarfileentry/ --- ## XarFileEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarloadoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarloadoptions/_index.md index ecdb0f6bfa48..6aeb6ae302ee 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarloadoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarloadoptions/_index.md @@ -3,7 +3,7 @@ title: Class XarLoadOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xar.XarLoadOptions class. Options with which archive is loaded from compressed file type: docs -weight: 1040 +weight: 1050 url: /net/aspose.zip.xar/xarloadoptions/ --- ## XarLoadOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarsaveoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarsaveoptions/_index.md index 95dedb1be782..83db11711652 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarsaveoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarsaveoptions/_index.md @@ -3,7 +3,7 @@ title: Class XarSaveOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xar.XarSaveOptions class. Options for saving a xar archive type: docs -weight: 1050 +weight: 1060 url: /net/aspose.zip.xar/xarsaveoptions/ --- ## XarSaveOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarstorecompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarstorecompressionsettings/_index.md index 594a998e4687..d1682cc9a47c 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarstorecompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarstorecompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class XarStoreCompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xar.XarStoreCompressionSettings class. Settings for Store compression method type: docs -weight: 1060 +weight: 1070 url: /net/aspose.zip.xar/xarstorecompressionsettings/ --- ## XarStoreCompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarzlibcompressionsettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarzlibcompressionsettings/_index.md index e944ba2f11cf..b3e9d2ef1bb6 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xar/xarzlibcompressionsettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xar/xarzlibcompressionsettings/_index.md @@ -3,7 +3,7 @@ title: Class XarZlibCompressionSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xar.XarZlibCompressionSettings class. Settings for Zlib compression method type: docs -weight: 1070 +weight: 1080 url: /net/aspose.zip.xar/xarzlibcompressionsettings/ --- ## XarZlibCompressionSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/_index.md index dd81cce70172..8123c1ddaa27 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Xz.Settings second_title: Aspose.ZIP for .NET API Reference description: The Settings namespace contains classes which represent xz archive settings type: docs -weight: 230 +weight: 240 url: /net/aspose.zip.xz.settings/ --- The Settings namespace contains classes which represent xz archive settings. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzarchivesettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzarchivesettings/_index.md index 61a8221daed0..24273e885204 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzarchivesettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzarchivesettings/_index.md @@ -3,7 +3,7 @@ title: Class XzArchiveSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xz.Settings.XzArchiveSettings class. The class contains set of setting particular xz archive type: docs -weight: 1080 +weight: 1090 url: /net/aspose.zip.xz.settings/xzarchivesettings/ --- ## XzArchiveSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzbcjx86filtersettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzbcjx86filtersettings/_index.md index 8985f92f60db..5a394cb2e3d6 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzbcjx86filtersettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzbcjx86filtersettings/_index.md @@ -3,7 +3,7 @@ title: Class XzBcjX86FilterSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xz.Settings.XzBcjX86FilterSettings class. Settings for xz Bcj X86 filter type: docs -weight: 1090 +weight: 1100 url: /net/aspose.zip.xz.settings/xzbcjx86filtersettings/ --- ## XzBcjX86FilterSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzchecktype/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzchecktype/_index.md index bd4472beeaac..46b417a076ff 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzchecktype/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzchecktype/_index.md @@ -3,7 +3,7 @@ title: Enum XzCheckType second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xz.Settings.XzCheckType enum. The enumeration defines checksum calculation approach for xz archive type: docs -weight: 1100 +weight: 1110 url: /net/aspose.zip.xz.settings/xzchecktype/ --- ## XzCheckType enumeration diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzfiltersettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzfiltersettings/_index.md index b88bc35c4f58..be3e0a7236e5 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzfiltersettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzfiltersettings/_index.md @@ -3,7 +3,7 @@ title: Class XzFilterSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xz.Settings.XzFilterSettings class. Base class for set of settings of particular xz format filter type: docs -weight: 1110 +weight: 1120 url: /net/aspose.zip.xz.settings/xzfiltersettings/ --- ## XzFilterSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzlzma2filtersettings/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzlzma2filtersettings/_index.md index d74454c63ebe..9d4719e5047f 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzlzma2filtersettings/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xz.settings/xzlzma2filtersettings/_index.md @@ -3,7 +3,7 @@ title: Class XzLZMA2FilterSettings second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xz.Settings.XzLZMA2FilterSettings class. Set of settings for xz LZMA2 filter type: docs -weight: 1120 +weight: 1130 url: /net/aspose.zip.xz.settings/xzlzma2filtersettings/ --- ## XzLZMA2FilterSettings class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xz/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xz/_index.md index 78729d7c74c3..8ba24ec29ca7 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xz/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xz/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Xz second_title: Aspose.ZIP for .NET API Reference description: The Xz namespace contains classes which represent xz archive related entities type: docs -weight: 220 +weight: 230 url: /net/aspose.zip.xz/ --- The Xz namespace contains classes which represent xz archive related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.xz/xzarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.xz/xzarchive/_index.md index a20b0ef1b458..2a564a5113d0 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.xz/xzarchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.xz/xzarchive/_index.md @@ -3,7 +3,7 @@ title: Class XzArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Xz.XzArchive class. This class represents xz archive file. Use it to compose and extract xz archives type: docs -weight: 1130 +weight: 1140 url: /net/aspose.zip.xz/xzarchive/ --- ## XzArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.z/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.z/_index.md index edb6d6d4c989..8db48769baf3 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.z/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.z/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Z second_title: Aspose.ZIP for .NET API Reference description: The Z namespace contains classes which represent Z archive related entities type: docs -weight: 240 +weight: 250 url: /net/aspose.zip.z/ --- The Z namespace contains classes which represent Z archive related entities. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.z/zarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.z/zarchive/_index.md index d4960c5fbccc..4301945c0023 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.z/zarchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.z/zarchive/_index.md @@ -3,7 +3,7 @@ title: Class ZArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Z.ZArchive class. This class represents Z compress archive file. Use it to compose or extract Z archives type: docs -weight: 1140 +weight: 1150 url: /net/aspose.zip.z/zarchive/ --- ## ZArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.z/zarchiveloadoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.z/zarchiveloadoptions/_index.md index 983940771c81..0e7dd71c7cba 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.z/zarchiveloadoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.z/zarchiveloadoptions/_index.md @@ -3,7 +3,7 @@ title: Class ZArchiveLoadOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Z.ZArchiveLoadOptions class. Options with which ZArchive is loaded from compressed file. Contains event raised on extraction type: docs -weight: 1150 +weight: 1160 url: /net/aspose.zip.z/zarchiveloadoptions/ --- ## ZArchiveLoadOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.z/zarchivesaveoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.z/zarchivesaveoptions/_index.md index 22d06d46a863..deb604aa9e87 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.z/zarchivesaveoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.z/zarchivesaveoptions/_index.md @@ -3,7 +3,7 @@ title: Class ZArchiveSaveOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Z.ZArchiveSaveOptions class. Settings for Zarchive type: docs -weight: 1160 +weight: 1170 url: /net/aspose.zip.z/zarchivesaveoptions/ --- ## ZArchiveSaveOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.zstandard/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.zstandard/_index.md index ec8a84a48d9e..c9ad460e4f05 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.zstandard/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.zstandard/_index.md @@ -3,7 +3,7 @@ title: Aspose.Zip.Zstandard second_title: Aspose.ZIP for .NET API Reference description: The Zstandard namespace contains classes for Zstandard compressed data manipulation type: docs -weight: 250 +weight: 260 url: /net/aspose.zip.zstandard/ --- The Zstandard namespace contains classes for Zstandard compressed data manipulation. diff --git a/content/sites/aspose/zip/english/net/aspose.zip.zstandard/zstandardarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.zstandard/zstandardarchive/_index.md index 73bc6028d019..dc872cb8d3b1 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.zstandard/zstandardarchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.zstandard/zstandardarchive/_index.md @@ -3,7 +3,7 @@ title: Class ZstandardArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Zstandard.ZstandardArchive class. This class represents Zstandard archive file. Use it to compose Zstandard archives type: docs -weight: 1170 +weight: 1180 url: /net/aspose.zip.zstandard/zstandardarchive/ --- ## ZstandardArchive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.zstandard/zstandardloadoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.zstandard/zstandardloadoptions/_index.md index abb4fff73628..7d5a8c6b7a4c 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.zstandard/zstandardloadoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.zstandard/zstandardloadoptions/_index.md @@ -3,7 +3,7 @@ title: Class ZstandardLoadOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Zstandard.ZstandardLoadOptions class. Options with which ZstandardArchive is loaded from compressed file. Contains event raised on extraction type: docs -weight: 1180 +weight: 1190 url: /net/aspose.zip.zstandard/zstandardloadoptions/ --- ## ZstandardLoadOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip.zstandard/zstandardsaveoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip.zstandard/zstandardsaveoptions/_index.md index eb2561c681cd..be7e08cc36e8 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip.zstandard/zstandardsaveoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip.zstandard/zstandardsaveoptions/_index.md @@ -3,7 +3,7 @@ title: Class ZstandardSaveOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Zstandard.ZstandardSaveOptions class. Settings for ZStandard archive type: docs -weight: 1190 +weight: 1200 url: /net/aspose.zip.zstandard/zstandardsaveoptions/ --- ## ZstandardSaveOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip/archive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/archive/_index.md index bd1c9732456d..742904dccebb 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/archive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/archive/_index.md @@ -3,7 +3,7 @@ title: Class Archive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.Archive class. This class represents zip archive file. Use it to compose extract or update zip archives type: docs -weight: 10 +weight: 30 url: /net/aspose.zip/archive/ --- ## Archive class diff --git a/content/sites/aspose/zip/english/net/aspose.zip/archiveentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/archiveentry/_index.md index 3663b6350fed..a6813ad651dd 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/archiveentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/archiveentry/_index.md @@ -3,7 +3,7 @@ title: Class ArchiveEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.ArchiveEntry class. Represents single file within archive type: docs -weight: 20 +weight: 40 url: /net/aspose.zip/archiveentry/ --- ## ArchiveEntry class diff --git a/content/sites/aspose/zip/english/net/aspose.zip/archiveentryencrypted/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/archiveentryencrypted/_index.md index 4ef2c151947f..24e0000a204e 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/archiveentryencrypted/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/archiveentryencrypted/_index.md @@ -3,7 +3,7 @@ title: Class ArchiveEntryEncrypted second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.ArchiveEntryEncrypted class. Zip entry that needs to be compressed with encryption or decompressed with decryption type: docs -weight: 30 +weight: 50 url: /net/aspose.zip/archiveentryencrypted/ --- ## ArchiveEntryEncrypted class diff --git a/content/sites/aspose/zip/english/net/aspose.zip/archiveentryplain/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/archiveentryplain/_index.md index 742e58c08eea..20828d51c2c6 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/archiveentryplain/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/archiveentryplain/_index.md @@ -3,7 +3,7 @@ title: Class ArchiveEntryPlain second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.ArchiveEntryPlain class. Zip entry that needs to be compressed without encryption or decompressed without decryption type: docs -weight: 40 +weight: 60 url: /net/aspose.zip/archiveentryplain/ --- ## ArchiveEntryPlain class diff --git a/content/sites/aspose/zip/english/net/aspose.zip/archivefactory/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/archivefactory/_index.md index 6126479030f2..c0655ba8963a 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/archivefactory/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/archivefactory/_index.md @@ -3,7 +3,7 @@ title: Class ArchiveFactory second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.ArchiveFactory class. Detects the archive format and creates the appropriate IArchive object according to the type of archive type: docs -weight: 50 +weight: 70 url: /net/aspose.zip/archivefactory/ --- ## ArchiveFactory class diff --git a/content/sites/aspose/zip/english/net/aspose.zip/archiveloadoptions/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/archiveloadoptions/_index.md index e4fe1aaf2b57..7aa487cf9d3f 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/archiveloadoptions/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/archiveloadoptions/_index.md @@ -3,7 +3,7 @@ title: Class ArchiveLoadOptions second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.ArchiveLoadOptions class. Options with which archive is loaded from compressed file type: docs -weight: 90 +weight: 110 url: /net/aspose.zip/archiveloadoptions/ --- ## ArchiveLoadOptions class diff --git a/content/sites/aspose/zip/english/net/aspose.zip/cancelentryeventargs/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/cancelentryeventargs/_index.md index b06c8169f450..fb09e5d2502c 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/cancelentryeventargs/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/cancelentryeventargs/_index.md @@ -3,7 +3,7 @@ title: Class CancelEntryEventArgs second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.CancelEntryEventArgs class. Event arguments for cancelable entry related events type: docs -weight: 150 +weight: 170 url: /net/aspose.zip/cancelentryeventargs/ --- ## CancelEntryEventArgs class diff --git a/content/sites/aspose/zip/english/net/aspose.zip/comhelper/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/comhelper/_index.md index c74a9339197b..e9f400e301b1 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/comhelper/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/comhelper/_index.md @@ -3,7 +3,7 @@ title: Class ComHelper second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.ComHelper class. Provides methods for COM clients to load archives into Aspose.Zip type: docs -weight: 160 +weight: 180 url: /net/aspose.zip/comhelper/ --- ## ComHelper class diff --git a/content/sites/aspose/zip/english/net/aspose.zip/entryeventargs/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/entryeventargs/_index.md index 87ea8d5dbe2f..915755fa110b 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/entryeventargs/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/entryeventargs/_index.md @@ -3,7 +3,7 @@ title: Class EntryEventArgs second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.EntryEventArgs class. Event arguments for entry related events type: docs -weight: 210 +weight: 230 url: /net/aspose.zip/entryeventargs/ --- ## EntryEventArgs class diff --git a/content/sites/aspose/zip/english/net/aspose.zip/iarchive/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/iarchive/_index.md index 83e0cfa9b749..116698893198 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/iarchive/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/iarchive/_index.md @@ -3,7 +3,7 @@ title: Interface IArchive second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.IArchive interface. This interface represents an archive type: docs -weight: 240 +weight: 260 url: /net/aspose.zip/iarchive/ --- ## IArchive interface diff --git a/content/sites/aspose/zip/english/net/aspose.zip/iarchivefileentry/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/iarchivefileentry/_index.md index 8366b2cfb400..b11c251aea26 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/iarchivefileentry/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/iarchivefileentry/_index.md @@ -3,7 +3,7 @@ title: Interface IArchiveFileEntry second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.IArchiveFileEntry interface. This interface represents an archive file entry type: docs -weight: 250 +weight: 270 url: /net/aspose.zip/iarchivefileentry/ --- ## IArchiveFileEntry interface diff --git a/content/sites/aspose/zip/english/net/aspose.zip/license/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/license/_index.md index 3a3d60fcad45..7e84e1353767 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/license/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/license/_index.md @@ -3,7 +3,7 @@ title: Class License second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.License class. Provides methods to license the component type: docs -weight: 370 +weight: 380 url: /net/aspose.zip/license/ --- ## License class diff --git a/content/sites/aspose/zip/english/net/aspose.zip/meteredlicense/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/meteredlicense/_index.md index 23d8b894bb8b..1eb9077ac7da 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/meteredlicense/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/meteredlicense/_index.md @@ -3,7 +3,7 @@ title: Class MeteredLicense second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.MeteredLicense class. Provides methods to set metered key type: docs -weight: 400 +weight: 410 url: /net/aspose.zip/meteredlicense/ --- ## MeteredLicense class diff --git a/content/sites/aspose/zip/english/net/aspose.zip/progresseventargs/_index.md b/content/sites/aspose/zip/english/net/aspose.zip/progresseventargs/_index.md index 8831104798e6..d2a0609275fe 100644 --- a/content/sites/aspose/zip/english/net/aspose.zip/progresseventargs/_index.md +++ b/content/sites/aspose/zip/english/net/aspose.zip/progresseventargs/_index.md @@ -3,7 +3,7 @@ title: Class ProgressEventArgs second_title: Aspose.ZIP for .NET API Reference description: Aspose.Zip.ProgressEventArgs class. Class for event data containing the number of bytes proceeded type: docs -weight: 410 +weight: 420 url: /net/aspose.zip/progresseventargs/ --- ## ProgressEventArgs class