Summary
The type of archive to produce using the
ArchiveCommand
.
- Assembly
- Mercurial
.Net .dll - Namespace
- Mercurial
- Interfaces
-
- IComparable
- IFormattable
- IConvertible
- Base Types
-
- object
- ValueType
- Enum
graph TD
Base0["Enum"]-->Type
Base1["ValueType"]-->Base0
Base2["object"]-->Base1
Interface0["IComparable"]-.->Type
Interface1["IFormattable"]-.->Type
Interface2["IConvertible"]-.->Type
Type["ArchiveType"]
class Type type-node
Syntax
public enum ArchiveType
Fields
Name | Constant Value | Summary |
---|---|---|
Automatic | 0 |
Detect the type of archive automatically by the extension of the archive file.
static
|
DirectoryWithFiles | 1 |
A directory full of files.
static
|
TarBZip2Compressed | 3 |
Tar archive, compressed using bzip2.
static
|
TarGZipCompressed | 4 |
Tar archive, compressed using gzip.
static
|
TarUncompressed | 2 |
Tar archive, uncompressed.
static
|
ZipDeflateCompressed | 6 |
Zip archive, compressed using deflate.
static
|
ZipUncompressed | 5 |
Zip archive, uncompressed.
static
|