Creates an instance of package.

The package document at the specified location is opened as an XmlDocument and the components of the package are extracted: metadata, manifest, spine, and NCX.

Namespace:  net.hazelhurst.epub
Assembly:  ePubLib (in ePubLib.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public package(
	string fileSystemPath,
	string packagePath,
	string packageFileName
)
Visual Basic (Declaration)
Public Sub New ( _
	fileSystemPath As String, _
	packagePath As String, _
	packageFileName As String _
)
Visual C++
public:
package(
	String^ fileSystemPath, 
	String^ packagePath, 
	String^ packageFileName
)

Parameters

fileSystemPath
Type: System..::.String
Path to the folder which is the root of the filesystem structure extracted from the .epub file.
packagePath
Type: System..::.String
The relative path within the fileSystemPath where the package document is stored.
packageFileName
Type: System..::.String
The file specification from the fileSystemPath root level of the package document e.g. "OPS/book.opf".

See Also