Save the contents of the given content document.

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

Syntax

C#
public bool SaveEntry(
	string fileName,
	string content
)
Visual Basic (Declaration)
Public Function SaveEntry ( _
	fileName As String, _
	content As String _
) As Boolean
Visual C++
public:
bool SaveEntry(
	String^ fileName, 
	String^ content
)

Parameters

fileName
Type: System..::.String
Name of the file where the content should be saved e.g. "chapter01.xml"
content
Type: System..::.String
String contents to be written to the file.

Return Value

bool - true if the book was saved, else false.

See Also