Method | Description | |
---|---|---|
CreatePackage ( |
Creates a new packaged archive
|
|
ExtractPackage ( |
This extracts a package, and returns the list of extracted files
|
|
OnProblemReport ( object sender, |
This is called whenever the progress changes
|
|
OnProgressChanged ( object sender, |
This is called whenever the progress changes
|
|
ReadPackage ( string packageFile ) : |
Reads the information of the selected package
|
|
UninstallPackage ( |
Uninstalls a package
|
public static CreatePackage ( |
||
currentPackage | The package data we wish to compress into an archive | |
compressionType | CompressionType | The compression type to use for this archive |
packageFile | string | The filename to save the package as |
packageImage | string | The path to the image for this package, if applicable |
packageFiles | List |
The list of files to save within the package |
return | void |
public static ExtractPackage ( |
||
currentPackage | The package to extract | |
extractionDirectory | string | The directory to extract to |
databaseFolder | string | The root package database folder |
packageFiles | string | Returns via 'ref' a string containing a list of files in the package (Used to update the dialog) |
return | void |
public static OnProblemReport ( object sender, |
||
sender | object | |
problemReport | ||
return | void |
public static OnProgressChanged ( object sender, |
||
sender | object | |
progressReport | ||
return | void |
public static ReadPackage ( string packageFile ) : |
||
packageFile | string | |
return |
public static UninstallPackage ( |
||
currentPackage | The package to uninstall | |
databaseFolder | string | The package database folder |
PackageFiles | string | Returns via 'ref' a list of files uninstalled |
return | bool |