Save the contents of the given file.

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

Syntax

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

Parameters

fileName
Type: System..::.String
The name of the file to which the contents should be written. The name is as it would appear in the manifest or table of contents e.g. "chapter02.xml"
content
Type: System..::.String
The string contents to be written.

See Also