Create a manifest instance by extracting the manifest node from the provided packageDocument XmlDocument.

The constructor uses the Dublin Core metadata namespace ("http://purl.org/dc/elements/1.1") and the Open Packaging Format namespace ("http://www.idpf.org/2007/opf") to perform the extraction.

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

Syntax

C#
public manifest(
	XmlDocument packageDocument
)
Visual Basic (Declaration)
Public Sub New ( _
	packageDocument As XmlDocument _
)
Visual C++
public:
manifest(
	XmlDocument^ packageDocument
)

Parameters

packageDocument
Type: System.Xml..::.XmlDocument
XmlDocument holding the entire epub package. This constructor extracts the manifest node.

See Also