Skip to main content
A newer version of this page is available. .

ZipArchive.UpdateText(String, String, Encoding) Method

Updates the content of the zip text item and specifies a new character encoding.

Namespace: DevExpress.Compression

Assembly: DevExpress.Docs.v18.2.dll

Declaration

public ZipTextItem UpdateText(
    string name,
    string content,
    Encoding encoding
)

Parameters

Name Type Description
name String

A string that is the name of the zip text item to update.

content String

A string that is the new text content of the zip text item.

encoding Encoding

A Encoding object that specifies the character encoding of the text content.

Returns

Type Description
ZipTextItem

A ZipTextItem object that is the updated zip text item.

Remarks

The UpdateText method removes an item from the archive, creates a new zip text item with the same name, new content and character encoding, and adds it to the archive.

If an item is not found, it is created.

Use the ZipArchive.Read to load the archive to be updated. To save the updated archive, use the ZipArchive.Save method.

See Also